Build:
  1. 0
2026-02-27 04:05.01: New job: test dates_calc.0.0.1 with ocaml-compiler.5.4.0~beta1, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29451/head (09d7830dd4a7cd4cfc1725bd69ec5b222eae677d)
                              on debian-13-ocaml-5.4/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29451/head" && git reset --hard 09d7830d
git fetch origin master
git merge --no-edit 5abb4f44e937819c2e438ab71bc23607a7cad3da
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn ocaml-compiler.5.4.0~beta1 5.4.0~beta1
RUN opam reinstall --update-invariant ocaml-compiler.5.4.0~beta1; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ocaml-compiler.5.4.0~beta1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall dates_calc.0.0.1; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'dates_calc.0.0.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test dates_calc.0.0.1) || true
RUN opam reinstall --with-test --verbose dates_calc.0.0.1; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'dates_calc.0.0.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

2026-02-27 04:05.01: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c-ocaml-compiler.5.4.0~beta1-dates_calc.0.0.1-09d7830dd4a7cd4cfc1725bd69ec5b222eae677d"
2026-02-27 04:05.01: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn ocaml-compiler.5.4.0~beta1 5.4.0~beta1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall --update-invariant ocaml-compiler.5.4.0~beta1;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'ocaml-compiler.5.4.0~beta1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dates_calc.0.0.1;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'dates_calc.0.0.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test dates_calc.0.0.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose dates_calc.0.0.1;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'dates_calc.0.0.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-02-27 04:05.01: Waiting for resource in pool OCluster
2026-03-02 12:29.09: Waiting for worker…
2026-03-02 12:32.55: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
Updating files:  61% (11323/18334)
Updating files:  62% (11368/18334)
Updating files:  63% (11551/18334)
Updating files:  64% (11734/18334)
Updating files:  65% (11918/18334)
Updating files:  66% (12101/18334)
Updating files:  67% (12284/18334)
Updating files:  68% (12468/18334)
Updating files:  69% (12651/18334)
Updating files:  70% (12834/18334)
Updating files:  71% (13018/18334)
Updating files:  72% (13201/18334)
Updating files:  73% (13384/18334)
Updating files:  74% (13568/18334)
Updating files:  75% (13751/18334)
Updating files:  76% (13934/18334)
Updating files:  77% (14118/18334)
Updating files:  78% (14301/18334)
Updating files:  79% (14484/18334)
Updating files:  80% (14668/18334)
Updating files:  81% (14851/18334)
Updating files:  82% (15034/18334)
Updating files:  83% (15218/18334)
Updating files:  84% (15401/18334)
Updating files:  85% (15584/18334)
Updating files:  86% (15768/18334)
Updating files:  87% (15951/18334)
Updating files:  88% (16134/18334)
Updating files:  89% (16318/18334)
Updating files:  90% (16501/18334)
Updating files:  91% (16684/18334)
Updating files:  92% (16868/18334)
Updating files:  93% (17051/18334)
Updating files:  94% (17234/18334)
Updating files:  95% (17418/18334)
Updating files:  96% (17601/18334)
Updating files:  97% (17784/18334)
Updating files:  98% (17968/18334)
Updating files:  99% (18151/18334)
Updating files: 100% (18334/18334)
Updating files: 100% (18334/18334), done.
HEAD is now at 5abb4f44e9 Merge pull request #29466 from mseri/release-doi2bib-0.9.1
Merge made by the 'ort' strategy.
 .../ocaml-base-compiler.3.07+1/opam                    |  1 +
 .../ocaml-base-compiler.3.07+2/opam                    |  1 +
 .../ocaml-base-compiler/ocaml-base-compiler.3.07/opam  |  1 +
 .../ocaml-base-compiler.3.08.0/opam                    |  1 +
 .../ocaml-base-compiler.3.08.1/opam                    |  1 +
 .../ocaml-base-compiler.3.08.2/opam                    |  1 +
 .../ocaml-base-compiler.3.08.3/opam                    |  1 +
 .../ocaml-base-compiler.3.08.4/opam                    |  1 +
 .../ocaml-base-compiler.3.09.0/opam                    |  1 +
 .../ocaml-base-compiler.3.09.1/opam                    |  1 +
 .../ocaml-base-compiler.3.09.2/opam                    |  1 +
 .../ocaml-base-compiler.3.09.3/opam                    |  1 +
 .../ocaml-base-compiler.3.10.0/opam                    |  1 +
 .../ocaml-base-compiler.3.10.1/opam                    |  1 +
 .../ocaml-base-compiler.3.10.2/opam                    |  1 +
 .../ocaml-base-compiler.3.11.0/opam                    |  1 +
 .../ocaml-base-compiler.3.11.1/opam                    |  1 +
 .../ocaml-base-compiler.3.11.2/opam                    |  1 +
 .../ocaml-base-compiler.3.12.0/opam                    |  1 +
 .../ocaml-base-compiler.3.12.1/opam                    |  1 +
 .../ocaml-base-compiler.4.00.0/opam                    |  1 +
 .../ocaml-base-compiler.4.00.1/opam                    |  1 +
 .../ocaml-base-compiler.4.01.0/opam                    |  1 +
 .../ocaml-base-compiler.4.02.0/opam                    |  1 +
 .../ocaml-base-compiler.4.02.1/opam                    |  1 +
 .../ocaml-base-compiler.4.02.2/opam                    |  1 +
 .../ocaml-base-compiler.4.02.3/opam                    |  1 +
 .../ocaml-base-compiler.4.03.0/opam                    |  1 +
 .../ocaml-base-compiler.4.04.0/opam                    |  1 +
 .../ocaml-base-compiler.4.04.1/opam                    |  1 +
 .../ocaml-base-compiler.4.04.2/opam                    |  1 +
 .../ocaml-base-compiler.4.05.0/opam                    |  1 +
 .../ocaml-base-compiler.4.06.0/opam                    |  1 +
 .../ocaml-base-compiler.4.06.1/opam                    |  1 +
 .../ocaml-base-compiler.4.07.0/opam                    |  1 +
 .../ocaml-base-compiler.4.07.1/opam                    |  1 +
 .../ocaml-base-compiler.4.08.0/opam                    |  1 +
 .../ocaml-base-compiler.4.08.1/opam                    |  1 +
 .../ocaml-base-compiler.4.09.0/opam                    |  1 +
 .../ocaml-base-compiler.4.09.1/opam                    |  1 +
 .../ocaml-base-compiler.4.10.0/opam                    |  1 +
 .../ocaml-base-compiler.4.10.1/opam                    |  1 +
 .../ocaml-base-compiler.4.10.2/opam                    |  1 +
 .../ocaml-base-compiler.4.11.0/opam                    |  1 +
 .../ocaml-base-compiler.4.11.1/opam                    |  1 +
 .../ocaml-base-compiler.4.11.2/opam                    |  1 +
 .../ocaml-base-compiler.4.12.0/opam                    |  1 +
 .../ocaml-base-compiler.4.12.1/opam                    |  1 +
 .../ocaml-base-compiler.4.13.0/opam                    |  1 +
 .../ocaml-base-compiler.4.13.1/opam                    |  1 +
 .../ocaml-base-compiler.4.14.0/opam                    |  1 +
 .../ocaml-base-compiler.4.14.1/opam                    |  1 +
 .../ocaml-base-compiler.4.14.2/opam                    |  1 +
 .../ocaml-base-compiler.4.14.2~rc1/opam                |  1 +
 .../ocaml-base-compiler.4.14.3/opam                    |  1 +
 .../ocaml-base-compiler/ocaml-base-compiler.5.0.0/opam |  5 ++++-
 .../ocaml-base-compiler/ocaml-base-compiler.5.1.0/opam |  5 ++++-
 .../ocaml-base-compiler/ocaml-base-compiler.5.1.1/opam |  5 ++++-
 .../ocaml-base-compiler/ocaml-base-compiler.5.2.0/opam |  5 ++++-
 .../ocaml-base-compiler/ocaml-base-compiler.5.2.1/opam |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.3.0/opam      |  1 +
 packages/ocaml-compiler/ocaml-compiler.5.3/opam        |  1 +
 packages/ocaml-compiler/ocaml-compiler.5.4.0/opam      |  1 +
 .../ocaml-compiler/ocaml-compiler.5.4.0~alpha1/opam    |  1 +
 .../ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam     |  1 +
 .../ocaml-compiler/ocaml-compiler.5.4.0~beta2/opam     |  1 +
 packages/ocaml-compiler/ocaml-compiler.5.4.0~rc1/opam  |  1 +
 packages/ocaml-compiler/ocaml-compiler.5.4.1/opam      |  1 +
 packages/ocaml-compiler/ocaml-compiler.5.4/opam        |  1 +
 .../ocaml-secondary-compiler.4.08.1-1/opam             |  1 +
 .../ocaml-secondary-compiler.4.08.1/opam               |  1 +
 .../ocaml-secondary-compiler.4.14.2/opam               |  1 +
 .../ocaml-variants.3.09.1+metaocaml/opam               |  1 +
 .../ocaml-variants.4.00.0+debug-runtime/opam           |  1 +
 packages/ocaml-variants/ocaml-variants.4.00.1+BER/opam |  1 +
 packages/ocaml-variants/ocaml-variants.4.00.1+PIC/opam |  1 +
 .../ocaml-variants.4.00.1+debug-runtime/opam           |  1 +
 .../ocaml-variants.4.00.1+open-types/opam              |  1 +
 .../ocaml-variants.4.00.1+raspberrypi/opam             |  1 +
 .../ocaml-variants.4.00.1+short-types/opam             |  1 +
 .../ocaml-variants/ocaml-variants.4.01.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.01.0+BER/opam |  1 +
 packages/ocaml-variants/ocaml-variants.4.01.0+PIC/opam |  1 +
 .../ocaml-variants.4.01.0+armv6-freebsd/opam           |  1 +
 packages/ocaml-variants/ocaml-variants.4.01.0+fp/opam  |  1 +
 packages/ocaml-variants/ocaml-variants.4.01.0+lsb/opam |  1 +
 .../ocaml-variants.4.01.0+musl+static/opam             |  1 +
 .../ocaml-variants/ocaml-variants.4.01.0+musl/opam     |  1 +
 .../ocaml-variants.4.01.0+open-types/opam              |  1 +
 .../ocaml-variants/ocaml-variants.4.01.0+profile/opam  |  1 +
 packages/ocaml-variants/ocaml-variants.4.02.0+PIC/opam |  1 +
 .../ocaml-variants.4.02.0+improved-errors/opam         |  1 +
 .../ocaml-variants/ocaml-variants.4.02.1+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.02.1+BER/opam |  1 +
 packages/ocaml-variants/ocaml-variants.4.02.1+PIC/opam |  1 +
 packages/ocaml-variants/ocaml-variants.4.02.1+fp/opam  |  1 +
 .../ocaml-variants.4.02.1+modular-implicits-ber/opam   |  1 +
 .../ocaml-variants.4.02.1+modular-implicits/opam       |  1 +
 .../ocaml-variants.4.02.1+musl+static/opam             |  1 +
 .../ocaml-variants/ocaml-variants.4.02.1+musl/opam     |  1 +
 .../ocaml-variants.4.02.2+improved-errors/opam         |  1 +
 .../ocaml-variants/ocaml-variants.4.02.3+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.02.3+PIC/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.02.3+buckle-1/opam |  1 +
 .../ocaml-variants.4.02.3+buckle-master/opam           |  1 +
 .../ocaml-variants.4.02.3+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.02.3+curried-constr/opam          |  1 +
 packages/ocaml-variants/ocaml-variants.4.02.3+fp/opam  |  1 +
 .../ocaml-variants.4.02.3+musl+static/opam             |  1 +
 .../ocaml-variants/ocaml-variants.4.02.3+musl/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.02.4+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.03.0+32bit/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.03.0+fPIC/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.03.0+flambda/opam  |  1 +
 .../ocaml-variants.4.03.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.03.0+fp/opam  |  1 +
 .../ocaml-variants.4.03.0+statistical-memprof/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.03.1+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.04.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.04.0+BER/opam |  1 +
 packages/ocaml-variants/ocaml-variants.4.04.0+afl/opam |  1 +
 .../ocaml-variants.4.04.0+bytecode-only/opam           |  1 +
 .../ocaml-variants/ocaml-variants.4.04.0+fPIC/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.04.0+flambda/opam  |  1 +
 .../ocaml-variants.4.04.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.04.0+fp/opam  |  1 +
 .../ocaml-variants.4.04.0+safe-string/opam             |  1 +
 .../ocaml-variants.4.04.0+spacetime/opam               |  1 +
 .../ocaml-variants.4.04.0+trunk+forced_lto/opam        |  1 +
 .../ocaml-variants/ocaml-variants.4.04.1+32bit/opam    |  1 +
 .../ocaml-variants.4.04.1+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.04.1+copatterns/opam              |  1 +
 .../ocaml-variants/ocaml-variants.4.04.1+fPIC/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.04.1+flambda/opam  |  1 +
 .../ocaml-variants.4.04.1+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.04.1+fp/opam  |  1 +
 .../ocaml-variants.4.04.1+safe-string/opam             |  1 +
 .../ocaml-variants.4.04.1+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.04.2+32bit/opam    |  1 +
 .../ocaml-variants.4.04.2+bytecode-only/opam           |  1 +
 .../ocaml-variants/ocaml-variants.4.04.2+fPIC/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.04.2+flambda/opam  |  1 +
 .../ocaml-variants.4.04.2+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.04.2+fp/opam  |  1 +
 .../ocaml-variants.4.04.2+safe-string/opam             |  1 +
 .../ocaml-variants.4.04.2+spacetime/opam               |  1 +
 .../ocaml-variants.4.04.2+statistical-memprof/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.04.3+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.05.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.05.0+afl/opam |  1 +
 .../ocaml-variants.4.05.0+bytecode-only/opam           |  1 +
 .../ocaml-variants/ocaml-variants.4.05.0+flambda/opam  |  1 +
 packages/ocaml-variants/ocaml-variants.4.05.0+lto/opam |  1 +
 .../ocaml-variants.4.05.0+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.05.0+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.05.0+safe-string/opam             |  1 +
 .../ocaml-variants.4.05.0+spacetime/opam               |  1 +
 .../ocaml-variants.4.05.0+statistical-memprof/opam     |  1 +
 .../ocaml-variants.4.05.1+trunk+afl/opam               |  1 +
 .../ocaml-variants.4.05.1+trunk+flambda/opam           |  1 +
 .../ocaml-variants.4.05.1+trunk+fp+flambda/opam        |  1 +
 .../ocaml-variants/ocaml-variants.4.05.1+trunk+fp/opam |  1 +
 .../ocaml-variants.4.05.1+trunk+safe-string/opam       |  1 +
 .../ocaml-variants/ocaml-variants.4.05.1+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.06.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.06.0+afl/opam |  1 +
 .../ocaml-variants.4.06.0+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.06.0+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.06.0+flambda/opam  |  1 +
 .../ocaml-variants.4.06.0+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.06.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.06.0+fp/opam  |  1 +
 .../ocaml-variants.4.06.0+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.06.0+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.06.0+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.06.0+spacetime/opam               |  1 +
 .../ocaml-variants.4.06.0+statistical-memprof/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.06.1+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.06.1+afl/opam |  1 +
 .../ocaml-variants.4.06.1+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.06.1+default-unsafe-string/opam   |  1 +
 .../ocaml-variants/ocaml-variants.4.06.1+flambda/opam  |  1 +
 .../ocaml-variants.4.06.1+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.06.1+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.06.1+fp/opam  |  1 +
 packages/ocaml-variants/ocaml-variants.4.06.1+lto/opam |  1 +
 .../ocaml-variants.4.06.1+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.06.1+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.06.1+no-flat-float-array/opam     |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.06.1+rescript/opam |  1 +
 .../ocaml-variants.4.06.1+statistical-memprof/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.06.1+termux/opam   |  1 +
 .../ocaml-variants.4.06.2+trunk+afl/opam               |  1 +
 .../ocaml-variants.4.06.2+trunk+flambda/opam           |  1 +
 .../ocaml-variants.4.06.2+trunk+force-safe-string/opam |  1 +
 .../ocaml-variants.4.06.2+trunk+fp+flambda/opam        |  1 +
 .../ocaml-variants/ocaml-variants.4.06.2+trunk+fp/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.06.2+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.07.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.07.0+afl/opam |  1 +
 .../ocaml-variants.4.07.0+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.07.0+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.07.0+flambda/opam  |  1 +
 .../ocaml-variants.4.07.0+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.07.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.07.0+fp/opam  |  1 +
 .../ocaml-variants.4.07.0+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.07.0+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.07.1+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.07.1+BER/opam |  1 +
 packages/ocaml-variants/ocaml-variants.4.07.1+afl/opam |  1 +
 .../ocaml-variants.4.07.1+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.07.1+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.07.1+flambda/opam  |  1 +
 .../ocaml-variants.4.07.1+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.07.1+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.07.1+fp/opam  |  1 +
 .../ocaml-variants.4.07.1+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.07.1+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.07.1+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.07.1+spacetime/opam               |  1 +
 .../ocaml-variants.4.07.1+statistical-memprof/opam     |  1 +
 .../ocaml-variants.4.07.2+trunk+afl/opam               |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants.4.07.2+trunk+flambda/opam           |  1 +
 .../ocaml-variants.4.07.2+trunk+fp+flambda/opam        |  1 +
 .../ocaml-variants/ocaml-variants.4.07.2+trunk+fp/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.07.2+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.08.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.08.0+afl/opam |  1 +
 .../ocaml-variants.4.08.0+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.08.0+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.08.0+flambda/opam  |  1 +
 .../ocaml-variants.4.08.0+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.08.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.08.0+fp/opam  |  1 +
 .../ocaml-variants.4.08.0+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.08.0+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.08.0+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.08.0+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.08.1+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.08.1+afl/opam |  1 +
 .../ocaml-variants.4.08.1+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.08.1+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.08.1+flambda/opam  |  1 +
 .../ocaml-variants.4.08.1+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.08.1+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.08.1+fp/opam  |  1 +
 .../ocaml-variants.4.08.1+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.08.1+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.08.1+spacetime/opam               |  1 +
 .../ocaml-variants.4.08.2+trunk+afl/opam               |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants.4.08.2+trunk+flambda/opam           |  1 +
 .../ocaml-variants.4.08.2+trunk+force-safe-string/opam |  1 +
 .../ocaml-variants.4.08.2+trunk+fp+flambda/opam        |  1 +
 .../ocaml-variants/ocaml-variants.4.08.2+trunk+fp/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.08.2+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.09.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.09.0+afl/opam |  1 +
 .../ocaml-variants.4.09.0+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.09.0+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.09.0+flambda/opam  |  1 +
 .../ocaml-variants.4.09.0+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.09.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.09.0+fp/opam  |  1 +
 .../ocaml-variants.4.09.0+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.09.0+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.09.0+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.09.0+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.09.1+32bit/opam    |  1 +
 .../ocaml-variants.4.09.1+afl+flambda/opam             |  1 +
 packages/ocaml-variants/ocaml-variants.4.09.1+afl/opam |  1 +
 .../ocaml-variants.4.09.1+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.09.1+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.09.1+flambda/opam  |  1 +
 .../ocaml-variants.4.09.1+force-safe-string/opam       |  1 +
 .../ocaml-variants.4.09.1+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.09.1+fp/opam  |  1 +
 .../ocaml-variants.4.09.1+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.09.1+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.09.1+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.09.1+spacetime/opam               |  1 +
 .../ocaml-variants.4.09.2+trunk+afl/opam               |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants.4.09.2+trunk+flambda/opam           |  1 +
 .../ocaml-variants.4.09.2+trunk+fp+flambda/opam        |  1 +
 .../ocaml-variants/ocaml-variants.4.09.2+trunk+fp/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.09.2+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.10.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.10.0+afl/opam |  1 +
 .../ocaml-variants.4.10.0+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.10.0+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.10.0+flambda/opam  |  1 +
 .../ocaml-variants.4.10.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.10.0+fp/opam  |  1 +
 .../ocaml-variants.4.10.0+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.10.0+musl+static+flambda/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.10.0+nnpcheck/opam |  1 +
 .../ocaml-variants.4.10.0+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.10.0+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.10.1+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.10.1+afl/opam |  1 +
 .../ocaml-variants.4.10.1+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.10.1+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.10.1+flambda/opam  |  1 +
 .../ocaml-variants.4.10.1+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.10.1+fp/opam  |  1 +
 .../ocaml-variants.4.10.1+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.10.1+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.10.1+no-flat-float-array/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.10.1+rc1+afl/opam  |  1 +
 .../ocaml-variants.4.10.1+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.10.2+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.10.2+afl/opam |  1 +
 .../ocaml-variants.4.10.2+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.10.2+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.10.2+flambda/opam  |  1 +
 .../ocaml-variants.4.10.2+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.10.2+fp/opam  |  1 +
 .../ocaml-variants.4.10.2+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.10.2+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.10.2+no-flat-float-array/opam     |  1 +
 .../ocaml-variants/ocaml-variants.4.10.2+rescript/opam |  1 +
 .../ocaml-variants.4.10.2+spacetime/opam               |  1 +
 .../ocaml-variants.4.10.3+trunk+afl/opam               |  1 +
 .../ocaml-variants.4.10.3+trunk+flambda/opam           |  1 +
 .../ocaml-variants/ocaml-variants.4.10.3+trunk+fp/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.10.3+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.11.0+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.11.0+afl/opam |  1 +
 .../ocaml-variants.4.11.0+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.11.0+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.11.0+flambda/opam  |  1 +
 .../ocaml-variants.4.11.0+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.11.0+fp/opam  |  1 +
 .../ocaml-variants.4.11.0+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.11.0+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.11.0+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.11.0+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.11.1+32bit/opam    |  1 +
 .../ocaml-variants.4.11.1+BER+flambda/opam             |  1 +
 packages/ocaml-variants/ocaml-variants.4.11.1+BER/opam |  1 +
 packages/ocaml-variants/ocaml-variants.4.11.1+afl/opam |  1 +
 .../ocaml-variants.4.11.1+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.11.1+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.11.1+flambda/opam  |  1 +
 .../ocaml-variants.4.11.1+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.11.1+fp/opam  |  1 +
 .../ocaml-variants.4.11.1+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.11.1+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.11.1+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.11.1+spacetime/opam               |  1 +
 .../ocaml-variants/ocaml-variants.4.11.2+32bit/opam    |  1 +
 packages/ocaml-variants/ocaml-variants.4.11.2+afl/opam |  1 +
 .../ocaml-variants.4.11.2+bytecode-only/opam           |  1 +
 .../ocaml-variants.4.11.2+default-unsafe-string/opam   |  1 +
 .../opam                                               |  1 +
 .../ocaml-variants/ocaml-variants.4.11.2+flambda/opam  |  1 +
 .../ocaml-variants.4.11.2+fp+flambda/opam              |  1 +
 packages/ocaml-variants/ocaml-variants.4.11.2+fp/opam  |  1 +
 .../ocaml-variants.4.11.2+musl+flambda/opam            |  1 +
 .../ocaml-variants.4.11.2+musl+static+flambda/opam     |  1 +
 .../ocaml-variants.4.11.2+no-flat-float-array/opam     |  1 +
 .../ocaml-variants.4.11.2+spacetime/opam               |  1 +
 .../ocaml-variants.4.11.3+trunk+afl/opam               |  1 +
 .../ocaml-variants.4.11.3+trunk+flambda/opam           |  1 +
 .../ocaml-variants/ocaml-variants.4.11.3+trunk+fp/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.11.3+trunk/opam    |  1 +
 .../ocaml-variants.4.12.0+domains+effects/opam         |  1 +
 .../ocaml-variants/ocaml-variants.4.12.0+domains/opam  |  1 +
 .../ocaml-variants/ocaml-variants.4.12.0+options/opam  |  1 +
 .../ocaml-variants/ocaml-variants.4.12.1+options/opam  |  1 +
 .../ocaml-variants/ocaml-variants.4.12.2+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.13.0+options/opam  |  1 +
 .../ocaml-variants/ocaml-variants.4.13.1+options/opam  |  1 +
 .../ocaml-variants/ocaml-variants.4.13.2+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.4.14.0+options/opam  |  1 +
 packages/ocaml-variants/ocaml-variants.4.14.1+BER/opam |  1 +
 .../ocaml-variants/ocaml-variants.4.14.1+options/opam  |  1 +
 .../ocaml-variants/ocaml-variants.4.14.2+options/opam  |  1 +
 .../ocaml-variants.4.14.2~rc1+options/opam             |  1 +
 .../ocaml-variants/ocaml-variants.4.14.3+options/opam  |  1 +
 .../ocaml-variants/ocaml-variants.4.14.4+trunk/opam    |  1 +
 .../ocaml-variants/ocaml-variants.5.0.0+options/opam   |  1 +
 packages/ocaml-variants/ocaml-variants.5.0.0+tsan/opam |  1 +
 .../ocaml-variants/ocaml-variants.5.0.1+trunk/opam     |  1 +
 .../ocaml-variants/ocaml-variants.5.1.0+options/opam   |  1 +
 packages/ocaml-variants/ocaml-variants.5.1.0+tsan/opam |  1 +
 .../ocaml-variants.5.1.1+effect-syntax/opam            |  1 +
 .../ocaml-variants.5.1.1+flambda2+trunk/opam           |  1 +
 .../ocaml-variants/ocaml-variants.5.1.1+flambda2/opam  |  1 +
 .../ocaml-variants/ocaml-variants.5.1.1+options/opam   |  1 +
 packages/ocaml-variants/ocaml-variants.5.1.1+tsan/opam |  1 +
 .../ocaml-variants/ocaml-variants.5.1.2+trunk/opam     |  1 +
 packages/ocaml-variants/ocaml-variants.5.2.0+msvc/opam |  1 +
 .../ocaml-variants/ocaml-variants.5.2.0+options/opam   |  1 +
 .../ocaml-variants.5.2.0+statmemprof/opam              |  1 +
 .../ocaml-variants/ocaml-variants.5.2.1+options/opam   |  1 +
 .../ocaml-variants.5.2.1~rc1+options/opam              |  1 +
 .../ocaml-variants/ocaml-variants.5.2.2+trunk/opam     |  1 +
 packages/ocaml-variants/ocaml-variants.5.3.0+BER/opam  |  1 +
 packages/ocamlbuild/ocamlbuild.0.14.0/opam             |  1 +
 packages/ocamlbuild/ocamlbuild.0.14.1/opam             |  1 +
 packages/ocamlbuild/ocamlbuild.0.14.2+win/opam         |  1 +
 packages/ocamlbuild/ocamlbuild.0.14.2/opam             |  1 +
 packages/ocamlbuild/ocamlbuild.0.14.3+win/opam         |  1 +
 packages/ocamlbuild/ocamlbuild.0.14.3/opam             |  1 +
 packages/ocamlbuild/ocamlbuild.0.15.0/opam             |  1 +
 packages/ocamlbuild/ocamlbuild.0.16.1/opam             |  1 +
 packages/ocamlfind/ocamlfind.1.8.0/opam                |  1 +
 packages/ocamlfind/ocamlfind.1.8.1/opam                |  1 +
 packages/ocamlfind/ocamlfind.1.9.1/opam                |  1 +
 packages/ocamlfind/ocamlfind.1.9.2/opam                |  1 +
 packages/ocamlfind/ocamlfind.1.9.3/opam                |  1 +
 packages/ocamlfind/ocamlfind.1.9.5/opam                |  1 +
 packages/ocamlfind/ocamlfind.1.9.6/opam                |  1 +
 packages/ocamlfind/ocamlfind.1.9.8/opam                |  1 +
 packages/relocatable/relocatable.packages/opam         | 18 ++++++++++++++++++
 432 files changed, 464 insertions(+), 5 deletions(-)
 create mode 100644 packages/relocatable/relocatable.packages/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c)
2026-03-02 12:33.22 ---> using "3c18c9e472a4f76bc128dc0a5a1e21158ba3dbd0d6773ace6ec33f0cfe6fac9b" from cache

/: (user (uid 1000) (gid 1000))

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-02 12:33.22 ---> using "7a3442ad99cd957e3ce65df65cad40aee4354c6d524c7813b8b589bc410c187e" from cache

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
  - you won't be able to use mercurial repositories unless you install the hg command on your system.
  - you won't be able to use darcs repositories unless you install the darcs command on your system.

Continue? [Y/n] y
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-02 12:33.22 ---> using "4214446d06a5b764dff5167574d07a5b4441731262795df63d7a3c5f64e1a189" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# invariant            ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages    ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.0
2026-03-02 12:33.22 ---> using "8bf276ecf196c09ac4fb294f887dce47d9744c212aabbbad5d313f0a4179272a" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-02 12:33.22 ---> using "c04e3f046c8eaf07d3d8f4b30debe47a6f7742bcdbfbfeb4d464149613cd35cd" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-02 12:33.24 ---> using "f28d2d55603b70a3956974bde95e68526d52d43abb5c3f086de712d28b994566" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-02 12:33.24 ---> using "3775e9b8ca53e7a42e175e2f214e7d345a02bf22f9dd6d271ae720654f277192" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [113 kB]
- Fetched 203 kB in 0s (1230 kB/s)
- Reading package lists...
- 
2026-03-02 12:33.24 ---> using "a6fcf1eb697bb2cbcd49a3ac591b228ed4dfb5d9211b39971561804e137638fa" from cache

/home/opam: (run (shell "opam pin add -k version -yn ocaml-compiler.5.4.0~beta1 5.4.0~beta1"))
ocaml-compiler is now pinned to version 5.4.0~beta1
2026-03-02 12:33.24 ---> using "6fd37d04a9e382ba9520dd8b4a6843a6d9b45aa8b88c7f16a736b525cb8983ed" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall --update-invariant ocaml-compiler.5.4.0~beta1;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'ocaml-compiler.5.4.0~beta1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
ocaml-compiler.5.4.0~beta1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== remove 1 package
  - remove    ocaml-base-compiler 5.4.0 (pinned)                [conflicts with ocaml-compiler]
=== downgrade 1 package
  - downgrade ocaml-compiler      5.4.0 to 5.4.0~beta1 (pinned)
=== recompile 6 packages
  - recompile base-domains        base                          [uses ocaml]
  - recompile base-effects        base                          [uses ocaml]
  - recompile base-nnp            base                          [uses base-domains]
  - recompile ocaml               5.4.0                         [uses ocaml-base-compiler]
  - recompile ocaml-config        3                             [uses ocaml-base-compiler]
  - recompile opam-depext         1.2.3                         [uses ocaml]
=== install 1 package
  - install   ocaml-variants      5.4.0~beta1+options           [required by ocaml]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-compiler.5.4.0~beta1  (cached)
-> retrieved ocaml-config.3  (cached)
-> retrieved opam-depext.1.2.3  (cached)
-> removed   base-effects.base
-> removed   base-nnp.base
-> removed   base-domains.base
-> removed   opam-depext.1.2.3
-> removed   ocaml.5.4.0
-> removed   ocaml-config.3
-> removed   ocaml-base-compiler.5.4.0
-> removed   ocaml-compiler.5.4.0
-> installed ocaml-compiler.5.4.0~beta1
-> installed ocaml-variants.5.4.0~beta1+options
-> installed ocaml-config.3
-> installed ocaml.5.4.0
-> installed base-domains.base
-> installed base-effects.base
-> installed base-nnp.base
-> installed opam-depext.1.2.3
[NOTE] Switch invariant was updated to ["ocaml-variants" {= "5.4.0~beta1+options"}]
       Use `opam switch set-invariant' to change it.
Done.

<><> opam-depext.1.2.3 installed successfully <><><><><><><><><><><><><><><><><>
=> opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead
# To update the current shell environment, run: eval $(opam env)
2026-03-02 12:33.24 ---> using "762340eb078c3df659e13e030502422547d3305b9c3af0f846f7b3c885574d39" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dates_calc.0.0.1;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'dates_calc.0.0.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dates_calc.0.0.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 2 packages
  - install dates_calc 0.0.1
  - install dune       3.21.1 [required by dates_calc]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dates_calc.0.0.1  (cached)
-> retrieved dune.3.21.1  (cached)
-> installed dune.3.21.1
-> installed dates_calc.0.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 12:34.57 ---> saved as "e327cf4816dc31239d09d2f1c8e80a2634bd0794d0faafca1ba9908f560768d0"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test dates_calc.0.0.1) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile dates_calc         0.0.1
=== install 16 packages
  - install   alcotest           1.9.1  [required by dates_calc]
  - install   astring            0.8.5  [required by alcotest]
  - install   cmdliner           2.1.0  [required by alcotest]
  - install   fmt                0.11.0 [required by alcotest]
  - install   ocaml-syntax-shims 1.0.0  [required by alcotest]
  - install   ocamlbuild         0.16.1 [required by fmt, astring, uutf]
  - install   ocamlfind          1.9.8  [required by fmt, astring, uutf]
  - install   ounit2             2.2.7  [required by qcheck-ounit]
  - install   qcheck             0.91   [required by dates_calc]
  - install   qcheck-core        0.91   [required by qcheck]
  - install   qcheck-ounit       0.91   [required by qcheck]
  - install   re                 1.14.0 [required by alcotest]
  - install   seq                base   [required by ounit2]
  - install   stdlib-shims       0.3.0  [required by alcotest]
  - install   topkg              1.1.1  [required by fmt, astring, uutf]
  - install   uutf               1.0.4  [required by alcotest]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0  (https://opam.ocaml.org/cache)
-> retrieved dates_calc.0.0.1  (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved ocamlbuild.0.16.1  (https://opam.ocaml.org/cache)
-> retrieved ocamlfind.1.9.8  (https://opam.ocaml.org/cache)
-> retrieved ounit2.2.2.7  (https://opam.ocaml.org/cache)
-> retrieved qcheck.0.91, qcheck-core.0.91, qcheck-ounit.0.91  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved seq.base  (2 extra sources)
-> retrieved seq.base  (2 extra sources)
-> installed seq.base
-> retrieved stdlib-shims.0.3.0  (https://opam.ocaml.org/cache)
-> retrieved topkg.1.1.1  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> installed ocaml-syntax-shims.1.0.0
-> installed re.1.14.0
-> installed qcheck-core.0.91
-> installed ounit2.2.2.7
-> installed qcheck-ounit.0.91
-> installed qcheck.0.91
-> installed ocamlfind.1.9.8
-> installed cmdliner.2.1.0
-> removed   dates_calc.0.0.1
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed fmt.0.11.0
-> installed uutf.1.0.4
-> installed astring.0.8.5
-> installed alcotest.1.9.1
-> installed dates_calc.0.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 12:37.17 ---> saved as "8e1c2efd928c56b42cdc994e73a1df3cbe1e6408f9f100965f76ca0f77e4252e"

/home/opam: (run (shell  "opam reinstall --with-test --verbose dates_calc.0.0.1;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'dates_calc.0.0.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== recompile 1 package
  - recompile dates_calc 0.0.1

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [dates_calc.0.0.1: extract]
-> retrieved dates_calc.0.0.1  (cached)
Processing  2/4: [dates_calc: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "dates_calc" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/dates_calc.0.0.1)
- (cd _build/default/test && ./unit.exe)
- Testing `unit'.
- This run has ID `3539VLX3'.
- 
-   [OK]          add_dates          0   days.
-   [OK]          add_dates          1   months_exact.
-   [OK]          add_dates          2   months_ambig.
-   [OK]          add_dates          3   years_exact.
-   [OK]          add_dates          4   years_ambig.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/dates_calc.0.0.1/_build/default/test/_build/_tests/unit'.
- Test Successful in 0.007s. 5 tests run.
- (cd _build/default/test && ./prop.exe)
- 
random seed: 354046330
-   generated   error    fail    pass /   total     time test name
- 
[ ]       0       0       0       0 /    1000     0.0s anon_test_1
[ ]     276       0       0     276 /    1000     0.1s anon_test_1
[ ]     558       0       0     558 /    1000     0.2s anon_test_1
[ ]     839       0       0     839 /    1000     0.3s anon_test_1
[✓]    1000       0       0    1000 /    1000     0.4s anon_test_1
- 
[ ]       0       0       0       0 /    1000     0.0s anon_test_2
[ ]       7       0       0       7 /    1000     0.1s anon_test_2
[ ]      21       0       0      21 /    1000     0.2s anon_test_2
[ ]      35       0       0      35 /    1000     0.3s anon_test_2
[ ]      44       0       0      44 /    1000     0.4s anon_test_2
[ ]      58       0       0      58 /    1000     0.5s anon_test_2
[ ]      74       0       0      74 /    1000     0.6s anon_test_2
[ ]      87       0       0      87 /    1000     0.7s anon_test_2
[ ]      97       0       0      97 /    1000     0.8s anon_test_2
[ ]     113       0       0     113 /    1000     0.9s anon_test_2
[ ]     127       0       0     127 /    1000     1.1s anon_test_2
[ ]     149       0       0     149 /    1000     1.2s anon_test_2
[ ]     161       0       0     161 /    1000     1.3s anon_test_2
[ ]     174       0       0     174 /    1000     1.4s anon_test_2
[ ]     184       0       0     184 /    1000     1.5s anon_test_2
[ ]     194       0       0     194 /    1000     1.6s anon_test_2
[ ]     204       0       0     204 /    1000     1.7s anon_test_2
[ ]     215       0       0     215 /    1000     1.8s anon_test_2
[ ]     226       0       0     226 /    1000     1.9s anon_test_2
[ ]     239       0       0     239 /    1000     2.0s anon_test_2
[ ]     252       0       0     252 /    1000     2.1s anon_test_2
[ ]     267       0       0     267 /    1000     2.2s anon_test_2
[ ]     284       0       0     284 /    1000     2.4s anon_test_2
[ ]     295       0       0     295 /    1000     2.5s anon_test_2
[ ]     313       0       0     313 /    1000     2.6s anon_test_2
[ ]     329       0       0     329 /    1000     2.7s anon_test_2
[ ]     341       0       0     341 /    1000     2.8s anon_test_2
[ ]     361       0       0     361 /    1000     2.9s anon_test_2
[ ]     380       0       0     380 /    1000     3.0s anon_test_2
[ ]     391       0       0     391 /    1000     3.1s anon_test_2
[ ]     405       0       0     405 /    1000     3.2s anon_test_2
[ ]     416       0       0     416 /    1000     3.3s anon_test_2
[ ]     425       0       0     425 /    1000     3.4s anon_test_2
[ ]     438       0       0     438 /    1000     3.5s anon_test_2
[ ]     452       0       0     452 /    1000     3.6s anon_test_2
[ ]     462       0       0     462 /    1000     3.7s anon_test_2
[ ]     471       0       0     471 /    1000     3.8s anon_test_2
[ ]     484       0       0     484 /    1000     3.9s anon_test_2
[ ]     500       0       0     500 /    1000     4.0s anon_test_2
[ ]     520       0       0     520 /    1000     4.2s anon_test_2
[ ]     538       0       0     538 /    1000     4.3s anon_test_2
[ ]     555       0       0     555 /    1000     4.4s anon_test_2
[ ]     571       0       0     571 /    1000     4.5s anon_test_2
[ ]     583       0       0     583 /    1000     4.6s anon_test_2
[ ]     597       0       0     597 /    1000     4.7s anon_test_2
[ ]     611       0       0     611 /    1000     4.8s anon_test_2
[ ]     623       0       0     623 /    1000     4.9s anon_test_2
[ ]     633       0       0     633 /    1000     5.0s anon_test_2
[ ]     647       0       0     647 /    1000     5.1s anon_test_2
[ ]     661       0       0     661 /    1000     5.2s anon_test_2
[ ]     674       0       0     674 /    1000     5.3s anon_test_2
[ ]     688       0       0     688 /    1000     5.4s anon_test_2
[ ]     697       0       0     697 /    1000     5.5s anon_test_2
[ ]     715       0       0     715 /    1000     5.7s anon_test_2
[ ]     727       0       0     727 /    1000     5.8s anon_test_2
[ ]     741       0       0     741 /    1000     5.9s anon_test_2
[ ]     753       0       0     753 /    1000     6.0s anon_test_2
[ ]     765       0       0     765 /    1000     6.1s anon_test_2
[ ]     781       0       0     781 /    1000     6.2s anon_test_2
[ ]     795       0       0     795 /    1000     6.3s anon_test_2
[ ]     803       0       0     803 /    1000     6.4s anon_test_2
[ ]     815       0       0     815 /    1000     6.5s anon_test_2
[ ]     831       0       0     831 /    1000     6.6s anon_test_2
[ ]     841       0       0     841 /    1000     6.7s anon_test_2
[ ]     850       0       0     850 /    1000     6.8s anon_test_2
[ ]     856       0       0     856 /    1000     6.9s anon_test_2
[ ]     869       0       0     869 /    1000     7.0s anon_test_2
[ ]     877       0       0     877 /    1000     7.2s anon_test_2
[ ]     892       0       0     892 /    1000     7.3s anon_test_2
[ ]     904       0       0     904 /    1000     7.4s anon_test_2
[ ]     914       0       0     914 /    1000     7.5s anon_test_2
[ ]     931       0       0     931 /    1000     7.6s anon_test_2
[ ]     945       0       0     945 /    1000     7.7s anon_test_2
[ ]     957       0       0     957 /    1000     7.8s anon_test_2
[ ]     975       0       0     975 /    1000     7.9s anon_test_2
[ ]     990       0       0     990 /    1000     8.0s anon_test_2
[✓]    1000       0       0    1000 /    1000     8.1s anon_test_2
- 
[ ]       0       0       0       0 / 1000000     0.0s h1
[ ]    9452       0       0    9452 / 1000000     0.1s h1
[ ]   18650       0       0   18650 / 1000000     0.2s h1
[ ]   27648       0       0   27648 / 1000000     0.3s h1
[ ]   36719       0       0   36719 / 1000000     0.4s h1
[ ]   45531       0       0   45531 / 1000000     0.5s h1
[ ]   54334       0       0   54334 / 1000000     0.6s h1
[ ]   63310       0       0   63310 / 1000000     0.7s h1
[ ]   72087       0       0   72087 / 1000000     0.8s h1
[ ]   81073       0       0   81073 / 1000000     0.9s h1 (collecting)
[ ]   90208       0       0   90208 / 1000000     1.0s h1
[ ]   98305       0       0   98305 / 1000000     1.1s h1
[ ]  107380       0       0  107380 / 1000000     1.2s h1
[ ]  116671       0       0  116671 / 1000000     1.3s h1
[ ]  125833       0       0  125833 / 1000000     1.4s h1
[ ]  134761       0       0  134761 / 1000000     1.5s h1
[ ]  144268       0       0  144268 / 1000000     1.6s h1
[ ]  153673       0       0  153673 / 1000000     1.7s h1
[ ]  163248       0       0  163248 / 1000000     1.8s h1
[ ]  172999       0       0  172999 / 1000000     1.9s h1
[ ]  182540       0       0  182540 / 1000000     2.0s h1
[ ]  192325       0       0  192325 / 1000000     2.1s h1
[ ]  202104       0       0  202104 / 1000000     2.2s h1
[ ]  211565       0       0  211565 / 1000000     2.3s h1
[ ]  221257       0       0  221257 / 1000000     2.4s h1
[ ]  230426       0       0  230426 / 1000000     2.5s h1
[ ]  240026       0       0  240026 / 1000000     2.6s h1 (   testing)
[ ]  249617       0       0  249617 / 1000000     2.7s h1
[ ]  259067       0       0  259067 / 1000000     2.8s h1
[ ]  268774       0       0  268774 / 1000000     2.9s h1
[ ]  278226       0       0  278226 / 1000000     3.0s h1
[ ]  287918       0       0  287918 / 1000000     3.1s h1
[ ]  296967       0       0  296967 / 1000000     3.2s h1
[ ]  306650       0       0  306650 / 1000000     3.3s h1
[ ]  316255       0       0  316255 / 1000000     3.4s h1
[ ]  325829       0       0  325829 / 1000000     3.5s h1
[ ]  335443       0       0  335443 / 1000000     3.6s h1
[ ]  344906       0       0  344906 / 1000000     3.7s h1
[ ]  354291       0       0  354291 / 1000000     3.8s h1
[ ]  364075       0       0  364075 / 1000000     3.9s h1
[ ]  373862       0       0  373862 / 1000000     4.0s h1
[ ]  383517       0       0  383517 / 1000000     4.1s h1
[ ]  393135       0       0  393135 / 1000000     4.2s h1
[ ]  402723       0       0  402723 / 1000000     4.3s h1
[ ]  412429       0       0  412429 / 1000000     4.4s h1
[ ]  422102       0       0  422102 / 1000000     4.5s h1
[ ]  431699       0       0  431699 / 1000000     4.6s h1
[ ]  440604       0       0  440604 / 1000000     4.7s h1
[ ]  450182       0       0  450182 / 1000000     4.8s h1
[ ]  459752       0       0  459752 / 1000000     4.9s h1
[ ]  469218       0       0  469218 / 1000000     5.0s h1
[ ]  478309       0       0  478309 / 1000000     5.1s h1
[ ]  487473       0       0  487473 / 1000000     5.2s h1
[ ]  496762       0       0  496762 / 1000000     5.3s h1
[ ]  506159       0       0  506159 / 1000000     5.4s h1
[ ]  516412       0       0  516412 / 1000000     5.5s h1 (collecting)
[ ]  524086       0       0  524086 / 1000000     5.6s h1
[ ]  533698       0       0  533698 / 1000000     5.7s h1
[ ]  543571       0       0  543571 / 1000000     5.8s h1
[ ]  553537       0       0  553537 / 1000000     5.9s h1
[ ]  563535       0       0  563535 / 1000000     6.0s h1
[ ]  573264       0       0  573264 / 1000000     6.1s h1
[ ]  582973       0       0  582973 / 1000000     6.2s h1
[ ]  592698       0       0  592698 / 1000000     6.3s h1 (collecting)
[ ]  602454       0       0  602454 / 1000000     6.4s h1
[ ]  612239       0       0  612239 / 1000000     6.5s h1
[ ]  621794       0       0  621794 / 1000000     6.6s h1
[ ]  631451       0       0  631451 / 1000000     6.7s h1
[ ]  641292       0       0  641292 / 1000000     6.8s h1
[ ]  650894       0       0  650894 / 1000000     6.9s h1
[ ]  660540       0       0  660540 / 1000000     7.0s h1
[ ]  670326       0       0  670326 / 1000000     7.1s h1
[ ]  680094       0       0  680094 / 1000000     7.2s h1
[ ]  689614       0       0  689614 / 1000000     7.3s h1
[ ]  698427       0       0  698427 / 1000000     7.4s h1 (generating)
[ ]  708305       0       0  708305 / 1000000     7.5s h1
[ ]  717982       0       0  717982 / 1000000     7.6s h1
[ ]  727645       0       0  727645 / 1000000     7.7s h1
[ ]  737400       0       0  737400 / 1000000     7.8s h1
[ ]  747148       0       0  747148 / 1000000     7.9s h1
[ ]  757100       0       0  757100 / 1000000     8.0s h1
[ ]  767038       0       0  767038 / 1000000     8.1s h1
[ ]  776798       0       0  776798 / 1000000     8.2s h1
[ ]  786635       0       0  786635 / 1000000     8.3s h1
[ ]  796416       0       0  796416 / 1000000     8.4s h1
[ ]  806214       0       0  806214 / 1000000     8.5s h1
[ ]  815945       0       0  815945 / 1000000     8.6s h1
[ ]  825595       0       0  825595 / 1000000     8.7s h1
[ ]  835665       0       0  835665 / 1000000     8.8s h1
[ ]  845339       0       0  845339 / 1000000     8.9s h1
[ ]  854904       0       0  854904 / 1000000     9.0s h1
[ ]  864761       0       0  864761 / 1000000     9.1s h1
[ ]  874624       0       0  874624 / 1000000     9.2s h1
[ ]  884281       0       0  884281 / 1000000     9.3s h1
[ ]  894056       0       0  894056 / 1000000     9.4s h1
[ ]  903761       0       0  903761 / 1000000     9.5s h1
[ ]  913661       0       0  913661 / 1000000     9.6s h1
[ ]  923189       0       0  923189 / 1000000     9.7s h1
[ ]  932843       0       0  932843 / 1000000     9.8s h1
[ ]  942442       0       0  942442 / 1000000     9.9s h1
[ ]  952169       0       0  952169 / 1000000    10.0s h1
[ ]  961973       0       0  961973 / 1000000    10.1s h1
[ ]  971816       0       0  971816 / 1000000    10.2s h1
[ ]  982032       0       0  982032 / 1000000    10.3s h1
[ ]  991730       0       0  991730 / 1000000    10.4s h1
[✓] 1000000       0       0 1000000 / 1000000    10.5s h1
- 
[ ]       0       0       0       0 / 1000000     0.0s h2
[ ]    5119       0       0    5119 / 1000000     0.1s h2
[ ]   10246       0       0   10246 / 1000000     0.2s h2 (collecting)
[ ]   15319       0       0   15319 / 1000000     0.3s h2
[ ]   20327       0       0   20327 / 1000000     0.4s h2
[ ]   25313       0       0   25313 / 1000000     0.5s h2
[ ]   30148       0       0   30148 / 1000000     0.6s h2
[ ]   35099       0       0   35099 / 1000000     0.7s h2
[ ]   40003       0       0   40003 / 1000000     0.8s h2
[ ]   45057       0       0   45057 / 1000000     0.9s h2
[ ]   50186       0       0   50186 / 1000000     1.0s h2
[ ]   55227       0       0   55227 / 1000000     1.1s h2
[ ]   60321       0       0   60321 / 1000000     1.2s h2
[ ]   65400       0       0   65400 / 1000000     1.3s h2
[ ]   70479       0       0   70479 / 1000000     1.4s h2
[ ]   75586       0       0   75586 / 1000000     1.5s h2
[ ]   80699       0       0   80699 / 1000000     1.6s h2
[ ]   85770       0       0   85770 / 1000000     1.7s h2
[ ]   90938       0       0   90938 / 1000000     1.8s h2
[ ]   96016       0       0   96016 / 1000000     1.9s h2
[ ]  101168       0       0  101168 / 1000000     2.0s h2
[ ]  106295       0       0  106295 / 1000000     2.1s h2
[ ]  111480       0       0  111480 / 1000000     2.2s h2
[ ]  116456       0       0  116456 / 1000000     2.3s h2
[ ]  121509       0       0  121509 / 1000000     2.4s h2
[ ]  126420       0       0  126420 / 1000000     2.5s h2
[ ]  131366       0       0  131366 / 1000000     2.6s h2
[ ]  136399       0       0  136399 / 1000000     2.7s h2
[ ]  141500       0       0  141500 / 1000000     2.8s h2
[ ]  146482       0       0  146482 / 1000000     2.9s h2
[ ]  151512       0       0  151512 / 1000000     3.0s h2
[ ]  156532       0       0  156532 / 1000000     3.1s h2
[ ]  161689       0       0  161689 / 1000000     3.2s h2
[ ]  166728       0       0  166728 / 1000000     3.3s h2
[ ]  171806       0       0  171806 / 1000000     3.4s h2
[ ]  176915       0       0  176915 / 1000000     3.5s h2
[ ]  182002       0       0  182002 / 1000000     3.6s h2
[ ]  187051       0       0  187051 / 1000000     3.7s h2
[ ]  192065       0       0  192065 / 1000000     3.8s h2
[ ]  197110       0       0  197110 / 1000000     3.9s h2
[ ]  202000       0       0  202000 / 1000000     4.0s h2
[ ]  206968       0       0  206968 / 1000000     4.1s h2
[ ]  212037       0       0  212037 / 1000000     4.2s h2 (collecting)
[ ]  216894       0       0  216894 / 1000000     4.3s h2
[ ]  222006       0       0  222006 / 1000000     4.4s h2
[ ]  226853       0       0  226853 / 1000000     4.5s h2
[ ]  230847       0       0  230847 / 1000000     4.6s h2
[ ]  235744       0       0  235744 / 1000000     4.7s h2
[ ]  240726       0       0  240726 / 1000000     4.8s h2 (collecting)
[ ]  245742       0       0  245742 / 1000000     4.9s h2
[ ]  250702       0       0  250702 / 1000000     5.0s h2
[ ]  255644       0       0  255644 / 1000000     5.1s h2
[ ]  260632       0       0  260632 / 1000000     5.2s h2
[ ]  265628       0       0  265628 / 1000000     5.3s h2
[ ]  270637       0       0  270637 / 1000000     5.4s h2
[ ]  275404       0       0  275404 / 1000000     5.5s h2
[ ]  280326       0       0  280326 / 1000000     5.6s h2
[ ]  285270       0       0  285270 / 1000000     5.7s h2
[ ]  290284       0       0  290284 / 1000000     5.8s h2
[ ]  295212       0       0  295212 / 1000000     5.9s h2
[ ]  300205       0       0  300205 / 1000000     6.0s h2
[ ]  305204       0       0  305204 / 1000000     6.1s h2
[ ]  310394       0       0  310394 / 1000000     6.2s h2
[ ]  315578       0       0  315578 / 1000000     6.3s h2
[ ]  320727       0       0  320727 / 1000000     6.4s h2
[ ]  325866       0       0  325866 / 1000000     6.5s h2
[ ]  330879       0       0  330879 / 1000000     6.6s h2
[ ]  335853       0       0  335853 / 1000000     6.7s h2
[ ]  341019       0       0  341019 / 1000000     6.8s h2
[ ]  345973       0       0  345973 / 1000000     6.9s h2
[ ]  351000       0       0  351000 / 1000000     7.0s h2
[ ]  355840       0       0  355840 / 1000000     7.1s h2
[ ]  360841       0       0  360841 / 1000000     7.2s h2
[ ]  365532       0       0  365532 / 1000000     7.3s h2
[ ]  370437       0       0  370437 / 1000000     7.4s h2
[ ]  375422       0       0  375422 / 1000000     7.5s h2
[ ]  380301       0       0  380301 / 1000000     7.6s h2
[ ]  385281       0       0  385281 / 1000000     7.7s h2
[ ]  390289       0       0  390289 / 1000000     7.8s h2
[ ]  395263       0       0  395263 / 1000000     7.9s h2
[ ]  400246       0       0  400246 / 1000000     8.0s h2
[ ]  405364       0       0  405364 / 1000000     8.1s h2
[ ]  410523       0       0  410523 / 1000000     8.2s h2
[ ]  415560       0       0  415560 / 1000000     8.3s h2
[ ]  420604       0       0  420604 / 1000000     8.4s h2
[ ]  425649       0       0  425649 / 1000000     8.5s h2
[ ]  430711       0       0  430711 / 1000000     8.6s h2
[ ]  435792       0       0  435792 / 1000000     8.7s h2
[ ]  440962       0       0  440962 / 1000000     8.8s h2
[ ]  445993       0       0  445993 / 1000000     8.9s h2
[ ]  450982       0       0  450982 / 1000000     9.0s h2
[ ]  455979       0       0  455979 / 1000000     9.1s h2
[ ]  461039       0       0  461039 / 1000000     9.2s h2
[ ]  466094       0       0  466094 / 1000000     9.3s h2
[ ]  471141       0       0  471141 / 1000000     9.4s h2
[ ]  476158       0       0  476158 / 1000000     9.5s h2
[ ]  481009       0       0  481009 / 1000000     9.6s h2
[ ]  485968       0       0  485968 / 1000000     9.7s h2
[ ]  491044       0       0  491044 / 1000000     9.8s h2
[ ]  496115       0       0  496115 / 1000000     9.9s h2
[ ]  501246       0       0  501246 / 1000000    10.0s h2
[ ]  506325       0       0  506325 / 1000000    10.1s h2
[ ]  511461       0       0  511461 / 1000000    10.2s h2
[ ]  516555       0       0  516555 / 1000000    10.3s h2
[ ]  521593       0       0  521593 / 1000000    10.4s h2
[ ]  526264       0       0  526264 / 1000000    10.5s h2
[ ]  531190       0       0  531190 / 1000000    10.6s h2
[ ]  536242       0       0  536242 / 1000000    10.7s h2
[ ]  541333       0       0  541333 / 1000000    10.8s h2
[ ]  546441       0       0  546441 / 1000000    10.9s h2
[ ]  551561       0       0  551561 / 1000000    11.0s h2
[ ]  556705       0       0  556705 / 1000000    11.1s h2
[ ]  561754       0       0  561754 / 1000000    11.2s h2
[ ]  566718       0       0  566718 / 1000000    11.3s h2
[ ]  571788       0       0  571788 / 1000000    11.4s h2
[ ]  576764       0       0  576764 / 1000000    11.5s h2
[ ]  581766       0       0  581766 / 1000000    11.6s h2
[ ]  586875       0       0  586875 / 1000000    11.7s h2
[ ]  591925       0       0  591925 / 1000000    11.8s h2
[ ]  596971       0       0  596971 / 1000000    11.9s h2
[ ]  602129       0       0  602129 / 1000000    12.0s h2
[ ]  607186       0       0  607186 / 1000000    12.1s h2
[ ]  612346       0       0  612346 / 1000000    12.2s h2
[ ]  617399       0       0  617399 / 1000000    12.3s h2
[ ]  622516       0       0  622516 / 1000000    12.4s h2
[ ]  627458       0       0  627458 / 1000000    12.5s h2
[ ]  632366       0       0  632366 / 1000000    12.6s h2
[ ]  637454       0       0  637454 / 1000000    12.7s h2
[ ]  642545       0       0  642545 / 1000000    12.8s h2
[ ]  647606       0       0  647606 / 1000000    12.9s h2
[ ]  652451       0       0  652451 / 1000000    13.0s h2
[ ]  657316       0       0  657316 / 1000000    13.1s h2
[ ]  661971       0       0  661971 / 1000000    13.2s h2
[ ]  666342       0       0  666342 / 1000000    13.3s h2
[ ]  671114       0       0  671114 / 1000000    13.4s h2
[ ]  675927       0       0  675927 / 1000000    13.5s h2
[ ]  680642       0       0  680642 / 1000000    13.6s h2
[ ]  685675       0       0  685675 / 1000000    13.7s h2
[ ]  690610       0       0  690610 / 1000000    13.8s h2
[ ]  695497       0       0  695497 / 1000000    13.9s h2 (collecting)
[ ]  700366       0       0  700366 / 1000000    14.0s h2
[ ]  705315       0       0  705315 / 1000000    14.1s h2
[ ]  710279       0       0  710279 / 1000000    14.2s h2
[ ]  715302       0       0  715302 / 1000000    14.3s h2
[ ]  720260       0       0  720260 / 1000000    14.4s h2
[ ]  725169       0       0  725169 / 1000000    14.5s h2
[ ]  730176       0       0  730176 / 1000000    14.6s h2 (collecting)
[ ]  735084       0       0  735084 / 1000000    14.7s h2
[ ]  739908       0       0  739908 / 1000000    14.8s h2
[ ]  745031       0       0  745031 / 1000000    14.9s h2
[ ]  749899       0       0  749899 / 1000000    15.0s h2
[ ]  755067       0       0  755067 / 1000000    15.1s h2
[ ]  760046       0       0  760046 / 1000000    15.2s h2
[ ]  764701       0       0  764701 / 1000000    15.3s h2
[ ]  769589       0       0  769589 / 1000000    15.4s h2
[ ]  774705       0       0  774705 / 1000000    15.5s h2
[ ]  779665       0       0  779665 / 1000000    15.6s h2
[ ]  784620       0       0  784620 / 1000000    15.7s h2
[ ]  789617       0       0  789617 / 1000000    15.8s h2
[ ]  794615       0       0  794615 / 1000000    15.9s h2
[ ]  799687       0       0  799687 / 1000000    16.0s h2
[ ]  804579       0       0  804579 / 1000000    16.1s h2
[ ]  809553       0       0  809553 / 1000000    16.2s h2
[ ]  814619       0       0  814619 / 1000000    16.3s h2
[ ]  819549       0       0  819549 / 1000000    16.4s h2
[ ]  824668       0       0  824668 / 1000000    16.5s h2
[ ]  829546       0       0  829546 / 1000000    16.6s h2
[ ]  834385       0       0  834385 / 1000000    16.7s h2
[ ]  839404       0       0  839404 / 1000000    16.8s h2
[ ]  844458       0       0  844458 / 1000000    16.9s h2
[ ]  849073       0       0  849073 / 1000000    17.0s h2
[ ]  853716       0       0  853716 / 1000000    17.1s h2
[ ]  858587       0       0  858587 / 1000000    17.2s h2
[ ]  863532       0       0  863532 / 1000000    17.3s h2
[ ]  868516       0       0  868516 / 1000000    17.4s h2
[ ]  873563       0       0  873563 / 1000000    17.5s h2
[ ]  878406       0       0  878406 / 1000000    17.6s h2
[ ]  883380       0       0  883380 / 1000000    17.7s h2
[ ]  888351       0       0  888351 / 1000000    17.8s h2
[ ]  893435       0       0  893435 / 1000000    17.9s h2
[ ]  897762       0       0  897762 / 1000000    18.0s h2
[ ]  901733       0       0  901733 / 1000000    18.1s h2
[ ]  906795       0       0  906795 / 1000000    18.2s h2
[ ]  911763       0       0  911763 / 1000000    18.3s h2
[ ]  916811       0       0  916811 / 1000000    18.4s h2
[ ]  921820       0       0  921820 / 1000000    18.5s h2
[ ]  926738       0       0  926738 / 1000000    18.6s h2
[ ]  931531       0       0  931531 / 1000000    18.7s h2
[ ]  936428       0       0  936428 / 1000000    18.8s h2
[ ]  941399       0       0  941399 / 1000000    18.9s h2
[ ]  946341       0       0  946341 / 1000000    19.0s h2
[ ]  951016       0       0  951016 / 1000000    19.1s h2
[ ]  955755       0       0  955755 / 1000000    19.2s h2
[ ]  960609       0       0  960609 / 1000000    19.3s h2
[ ]  965630       0       0  965630 / 1000000    19.4s h2
[ ]  970522       0       0  970522 / 1000000    19.5s h2
[ ]  975515       0       0  975515 / 1000000    19.6s h2
[ ]  980509       0       0  980509 / 1000000    19.7s h2
[ ]  985386       0       0  985386 / 1000000    19.8s h2
[ ]  990257       0       0  990257 / 1000000    19.9s h2
[ ]  995148       0       0  995148 / 1000000    20.0s h2 (generating)
[✓] 1000000       0       0 1000000 / 1000000    20.1s h2
- 
[ ]       0       0       0       0 / 1000000     0.0s h3
[ ]    9799       0       0    9799 / 1000000     0.1s h3
[ ]   19680       0       0   19680 / 1000000     0.2s h3
[ ]   29471       0       0   29471 / 1000000     0.3s h3
[ ]   38968       0       0   38968 / 1000000     0.4s h3
[ ]   48550       0       0   48550 / 1000000     0.5s h3
[ ]   57688       0       0   57688 / 1000000     0.6s h3
[ ]   67294       0       0   67294 / 1000000     0.7s h3
[ ]   76751       0       0   76751 / 1000000     0.8s h3
[ ]   86309       0       0   86309 / 1000000     0.9s h3
[ ]   96089       0       0   96089 / 1000000     1.0s h3
[ ]  104964       0       0  104964 / 1000000     1.1s h3
[ ]  114807       0       0  114807 / 1000000     1.2s h3
[ ]  124663       0       0  124663 / 1000000     1.3s h3
[ ]  134422       0       0  134422 / 1000000     1.4s h3 (collecting)
[ ]  143965       0       0  143965 / 1000000     1.5s h3
[ ]  153275       0       0  153275 / 1000000     1.6s h3
[ ]  163167       0       0  163167 / 1000000     1.7s h3
[ ]  172742       0       0  172742 / 1000000     1.8s h3
[ ]  181986       0       0  181986 / 1000000     1.9s h3
[ ]  192197       0       0  192197 / 1000000     2.0s h3
[ ]  202467       0       0  202467 / 1000000     2.1s h3
[ ]  212601       0       0  212601 / 1000000     2.2s h3
[ ]  222710       0       0  222710 / 1000000     2.3s h3
[ ]  232810       0       0  232810 / 1000000     2.4s h3 (collecting)
[ ]  243055       0       0  243055 / 1000000     2.5s h3
[ ]  253085       0       0  253085 / 1000000     2.6s h3 (collecting)
[ ]  263254       0       0  263254 / 1000000     2.7s h3
[ ]  272987       0       0  272987 / 1000000     2.8s h3
[ ]  283144       0       0  283144 / 1000000     2.9s h3
[ ]  293255       0       0  293255 / 1000000     3.0s h3
[ ]  303277       0       0  303277 / 1000000     3.1s h3
[ ]  313314       0       0  313314 / 1000000     3.2s h3 (collecting)
[ ]  323196       0       0  323196 / 1000000     3.3s h3
[ ]  333139       0       0  333139 / 1000000     3.4s h3
[ ]  343399       0       0  343399 / 1000000     3.5s h3
[ ]  353790       0       0  353790 / 1000000     3.6s h3
[ ]  364046       0       0  364046 / 1000000     3.7s h3
[ ]  374072       0       0  374072 / 1000000     3.8s h3
[ ]  384146       0       0  384146 / 1000000     3.9s h3
[ ]  394067       0       0  394067 / 1000000     4.0s h3
[ ]  404187       0       0  404187 / 1000000     4.1s h3
[ ]  414246       0       0  414246 / 1000000     4.2s h3
[ ]  424212       0       0  424212 / 1000000     4.3s h3
[ ]  434223       0       0  434223 / 1000000     4.4s h3
[ ]  444242       0       0  444242 / 1000000     4.5s h3
[ ]  454361       0       0  454361 / 1000000     4.6s h3
[ ]  464372       0       0  464372 / 1000000     4.7s h3
[ ]  474586       0       0  474586 / 1000000     4.8s h3
[ ]  484774       0       0  484774 / 1000000     4.9s h3
[ ]  494864       0       0  494864 / 1000000     5.0s h3
[ ]  504913       0       0  504913 / 1000000     5.1s h3
[ ]  515008       0       0  515008 / 1000000     5.2s h3
[ ]  524935       0       0  524935 / 1000000     5.3s h3
[ ]  534444       0       0  534444 / 1000000     5.4s h3
[ ]  544404       0       0  544404 / 1000000     5.5s h3
[ ]  554347       0       0  554347 / 1000000     5.6s h3 (collecting)
[ ]  564158       0       0  564158 / 1000000     5.7s h3
[ ]  574102       0       0  574102 / 1000000     5.8s h3
[ ]  584042       0       0  584042 / 1000000     5.9s h3
[ ]  593947       0       0  593947 / 1000000     6.0s h3
[ ]  604198       0       0  604198 / 1000000     6.1s h3
[ ]  613972       0       0  613972 / 1000000     6.2s h3 (collecting)
[ ]  623666       0       0  623666 / 1000000     6.3s h3
[ ]  633340       0       0  633340 / 1000000     6.4s h3
[ ]  643230       0       0  643230 / 1000000     6.5s h3
[ ]  652810       0       0  652810 / 1000000     6.6s h3
[ ]  662368       0       0  662368 / 1000000     6.7s h3
[ ]  671849       0       0  671849 / 1000000     6.8s h3
[ ]  681799       0       0  681799 / 1000000     6.9s h3
[ ]  692084       0       0  692084 / 1000000     7.0s h3
[ ]  701883       0       0  701883 / 1000000     7.1s h3
[ ]  711993       0       0  711993 / 1000000     7.2s h3 (collecting)
[ ]  721588       0       0  721588 / 1000000     7.3s h3
[ ]  731301       0       0  731301 / 1000000     7.4s h3
[ ]  741222       0       0  741222 / 1000000     7.5s h3
[ ]  751336       0       0  751336 / 1000000     7.6s h3 (collecting)
[ ]  761210       0       0  761210 / 1000000     7.7s h3
[ ]  770966       0       0  770966 / 1000000     7.8s h3
[ ]  780681       0       0  780681 / 1000000     7.9s h3
[ ]  790282       0       0  790282 / 1000000     8.0s h3 (collecting)
[ ]  799985       0       0  799985 / 1000000     8.1s h3 (collecting)
[ ]  809921       0       0  809921 / 1000000     8.2s h3
[ ]  819590       0       0  819590 / 1000000     8.3s h3
[ ]  828664       0       0  828664 / 1000000     8.4s h3
[ ]  838435       0       0  838435 / 1000000     8.5s h3
[ ]  848115       0       0  848115 / 1000000     8.6s h3
[ ]  857781       0       0  857781 / 1000000     8.7s h3
[ ]  867823       0       0  867823 / 1000000     8.8s h3
[ ]  878118       0       0  878118 / 1000000     8.9s h3
[ ]  887706       0       0  887706 / 1000000     9.0s h3
[ ]  897231       0       0  897231 / 1000000     9.1s h3
[ ]  907130       0       0  907130 / 1000000     9.2s h3
[ ]  916484       0       0  916484 / 1000000     9.3s h3
[ ]  926459       0       0  926459 / 1000000     9.4s h3
[ ]  936114       0       0  936114 / 1000000     9.5s h3
[ ]  945406       0       0  945406 / 1000000     9.6s h3
[ ]  955336       0       0  955336 / 1000000     9.7s h3
[ ]  965218       0       0  965218 / 1000000     9.8s h3
[ ]  974829       0       0  974829 / 1000000     9.9s h3
[ ]  984546       0       0  984546 / 1000000    10.0s h3
[ ]  994262       0       0  994262 / 1000000    10.1s h3 (collecting)
[✓] 1000000       0       0 1000000 / 1000000    10.2s h3
- 
[ ]       0       0       0       0 / 1000000     0.0s h4
[ ]    2626       0       0    2626 / 1000000     0.1s h4
[ ]    5193       0       0    5193 / 1000000     0.2s h4
[ ]    7714       0       0    7714 / 1000000     0.3s h4
[ ]   10270       0       0   10270 / 1000000     0.4s h4
[ ]   12862       0       0   12862 / 1000000     0.5s h4
[ ]   15330       0       0   15330 / 1000000     0.6s h4
[ ]   17863       0       0   17863 / 1000000     0.7s h4
[ ]   20364       0       0   20364 / 1000000     0.8s h4
[ ]   22864       0       0   22864 / 1000000     0.9s h4
[ ]   25382       0       0   25382 / 1000000     1.0s h4
[ ]   27873       0       0   27873 / 1000000     1.1s h4
[ ]   30388       0       0   30388 / 1000000     1.2s h4
[ ]   32863       0       0   32863 / 1000000     1.3s h4
[ ]   35370       0       0   35370 / 1000000     1.4s h4
[ ]   37863       0       0   37863 / 1000000     1.5s h4
[ ]   40355       0       0   40355 / 1000000     1.6s h4
[ ]   42857       0       0   42857 / 1000000     1.7s h4
[ ]   45115       0       0   45115 / 1000000     1.8s h4
[ ]   47105       0       0   47105 / 1000000     1.9s h4
[ ]   49251       0       0   49251 / 1000000     2.0s h4
[ ]   51363       0       0   51363 / 1000000     2.1s h4
[ ]   53505       0       0   53505 / 1000000     2.2s h4
[ ]   55689       0       0   55689 / 1000000     2.3s h4
[ ]   57996       0       0   57996 / 1000000     2.4s h4
[ ]   60334       0       0   60334 / 1000000     2.5s h4
[ ]   62647       0       0   62647 / 1000000     2.6s h4
[ ]   64976       0       0   64976 / 1000000     2.7s h4
[ ]   67332       0       0   67332 / 1000000     2.8s h4
[ ]   69681       0       0   69681 / 1000000     2.9s h4
[ ]   71933       0       0   71933 / 1000000     3.0s h4
[ ]   74519       0       0   74519 / 1000000     3.1s h4
[ ]   76962       0       0   76962 / 1000000     3.2s h4
[ ]   79450       0       0   79450 / 1000000     3.3s h4
[ ]   82093       0       0   82093 / 1000000     3.4s h4
[ ]   84684       0       0   84684 / 1000000     3.5s h4
[ ]   87274       0       0   87274 / 1000000     3.6s h4
[ ]   89876       0       0   89876 / 1000000     3.7s h4
[ ]   92405       0       0   92405 / 1000000     3.8s h4
[ ]   94975       0       0   94975 / 1000000     3.9s h4
[ ]   97425       0       0   97425 / 1000000     4.0s h4
[ ]   99981       0       0   99981 / 1000000     4.1s h4
[ ]  102508       0       0  102508 / 1000000     4.2s h4
[ ]  104914       0       0  104914 / 1000000     4.3s h4
[ ]  107455       0       0  107455 / 1000000     4.4s h4
[ ]  109952       0       0  109952 / 1000000     4.5s h4
[ ]  112506       0       0  112506 / 1000000     4.6s h4
[ ]  115053       0       0  115053 / 1000000     4.7s h4
[ ]  117517       0       0  117517 / 1000000     4.8s h4
[ ]  120008       0       0  120008 / 1000000     4.9s h4
[ ]  122190       0       0  122190 / 1000000     5.0s h4
[ ]  124554       0       0  124554 / 1000000     5.1s h4
[ ]  127005       0       0  127005 / 1000000     5.2s h4
[ ]  129491       0       0  129491 / 1000000     5.3s h4
[ ]  132179       0       0  132179 / 1000000     5.4s h4
[ ]  134871       0       0  134871 / 1000000     5.5s h4
[ ]  137473       0       0  137473 / 1000000     5.6s h4
[ ]  139843       0       0  139843 / 1000000     5.7s h4
[ ]  142350       0       0  142350 / 1000000     5.8s h4
[ ]  144900       0       0  144900 / 1000000     5.9s h4
[ ]  147500       0       0  147500 / 1000000     6.0s h4
[ ]  150134       0       0  150134 / 1000000     6.1s h4
[ ]  152681       0       0  152681 / 1000000     6.2s h4
[ ]  155263       0       0  155263 / 1000000     6.3s h4
[ ]  157844       0       0  157844 / 1000000     6.4s h4
[ ]  160354       0       0  160354 / 1000000     6.5s h4
[ ]  162869       0       0  162869 / 1000000     6.6s h4
[ ]  165463       0       0  165463 / 1000000     6.7s h4
[ ]  168027       0       0  168027 / 1000000     6.8s h4
[ ]  170620       0       0  170620 / 1000000     6.9s h4
[ ]  172979       0       0  172979 / 1000000     7.0s h4
[ ]  175480       0       0  175480 / 1000000     7.1s h4
[ ]  178104       0       0  178104 / 1000000     7.2s h4
[ ]  180677       0       0  180677 / 1000000     7.3s h4
[ ]  183338       0       0  183338 / 1000000     7.4s h4
[ ]  185989       0       0  185989 / 1000000     7.5s h4
[ ]  188696       0       0  188696 / 1000000     7.6s h4
[ ]  191285       0       0  191285 / 1000000     7.7s h4
[ ]  193996       0       0  193996 / 1000000     7.8s h4
[ ]  196584       0       0  196584 / 1000000     7.9s h4
[ ]  199117       0       0  199117 / 1000000     8.0s h4
[ ]  201717       0       0  201717 / 1000000     8.1s h4
[ ]  204422       0       0  204422 / 1000000     8.2s h4
[ ]  206898       0       0  206898 / 1000000     8.3s h4
[ ]  209368       0       0  209368 / 1000000     8.4s h4
[ ]  211769       0       0  211769 / 1000000     8.5s h4
[ ]  214283       0       0  214283 / 1000000     8.6s h4
[ ]  216822       0       0  216822 / 1000000     8.7s h4
[ ]  219361       0       0  219361 / 1000000     8.8s h4
[ ]  221929       0       0  221929 / 1000000     8.9s h4
[ ]  224442       0       0  224442 / 1000000     9.0s h4
[ ]  227076       0       0  227076 / 1000000     9.1s h4 (collecting)
[ ]  229613       0       0  229613 / 1000000     9.2s h4
[ ]  232087       0       0  232087 / 1000000     9.3s h4
[ ]  234716       0       0  234716 / 1000000     9.4s h4
[ ]  237259       0       0  237259 / 1000000     9.5s h4
[ ]  239957       0       0  239957 / 1000000     9.6s h4
[ ]  242629       0       0  242629 / 1000000     9.7s h4
[ ]  245284       0       0  245284 / 1000000     9.8s h4
[ ]  247803       0       0  247803 / 1000000     9.9s h4
[ ]  250269       0       0  250269 / 1000000    10.0s h4
[ ]  252775       0       0  252775 / 1000000    10.1s h4
[ ]  255411       0       0  255411 / 1000000    10.2s h4
[ ]  257899       0       0  257899 / 1000000    10.3s h4
[ ]  260426       0       0  260426 / 1000000    10.4s h4
[ ]  262955       0       0  262955 / 1000000    10.5s h4
[ ]  265512       0       0  265512 / 1000000    10.6s h4
[ ]  267937       0       0  267937 / 1000000    10.7s h4
[ ]  270508       0       0  270508 / 1000000    10.8s h4
[ ]  273038       0       0  273038 / 1000000    10.9s h4
[ ]  275578       0       0  275578 / 1000000    11.0s h4
[ ]  278114       0       0  278114 / 1000000    11.1s h4
[ ]  280613       0       0  280613 / 1000000    11.2s h4
[ ]  283219       0       0  283219 / 1000000    11.3s h4
[ ]  285821       0       0  285821 / 1000000    11.4s h4
[ ]  288452       0       0  288452 / 1000000    11.5s h4
[ ]  291009       0       0  291009 / 1000000    11.6s h4
[ ]  293559       0       0  293559 / 1000000    11.7s h4
[ ]  295964       0       0  295964 / 1000000    11.8s h4
[ ]  298469       0       0  298469 / 1000000    11.9s h4
[ ]  300967       0       0  300967 / 1000000    12.0s h4
[ ]  303528       0       0  303528 / 1000000    12.1s h4
[ ]  306088       0       0  306088 / 1000000    12.2s h4
[ ]  308540       0       0  308540 / 1000000    12.3s h4
[ ]  311054       0       0  311054 / 1000000    12.4s h4
[ ]  313344       0       0  313344 / 1000000    12.5s h4
[ ]  315813       0       0  315813 / 1000000    12.6s h4
[ ]  318301       0       0  318301 / 1000000    12.7s h4
[ ]  320819       0       0  320819 / 1000000    12.8s h4
[ ]  323357       0       0  323357 / 1000000    12.9s h4
[ ]  325916       0       0  325916 / 1000000    13.0s h4
[ ]  328474       0       0  328474 / 1000000    13.1s h4
[ ]  330896       0       0  330896 / 1000000    13.2s h4
[ ]  333271       0       0  333271 / 1000000    13.3s h4
[ ]  335755       0       0  335755 / 1000000    13.4s h4
[ ]  338211       0       0  338211 / 1000000    13.5s h4
[ ]  340501       0       0  340501 / 1000000    13.6s h4
[ ]  342797       0       0  342797 / 1000000    13.7s h4
[ ]  345205       0       0  345205 / 1000000    13.8s h4
[ ]  347694       0       0  347694 / 1000000    13.9s h4
[ ]  350205       0       0  350205 / 1000000    14.0s h4
[ ]  352810       0       0  352810 / 1000000    14.1s h4
[ ]  355472       0       0  355472 / 1000000    14.2s h4
[ ]  358023       0       0  358023 / 1000000    14.3s h4
[ ]  360577       0       0  360577 / 1000000    14.4s h4
[ ]  363031       0       0  363031 / 1000000    14.5s h4
[ ]  365410       0       0  365410 / 1000000    14.6s h4
[ ]  367717       0       0  367717 / 1000000    14.7s h4
[ ]  370167       0       0  370167 / 1000000    14.8s h4
[ ]  372609       0       0  372609 / 1000000    14.9s h4
[ ]  375123       0       0  375123 / 1000000    15.0s h4
[ ]  377580       0       0  377580 / 1000000    15.1s h4
[ ]  379995       0       0  379995 / 1000000    15.2s h4
[ ]  382476       0       0  382476 / 1000000    15.3s h4
[ ]  384939       0       0  384939 / 1000000    15.4s h4
[ ]  387421       0       0  387421 / 1000000    15.5s h4
[ ]  389863       0       0  389863 / 1000000    15.6s h4
[ ]  392359       0       0  392359 / 1000000    15.7s h4
[ ]  394793       0       0  394793 / 1000000    15.8s h4 (generating)
[ ]  397292       0       0  397292 / 1000000    15.9s h4
[ ]  399826       0       0  399826 / 1000000    16.0s h4
[ ]  402294       0       0  402294 / 1000000    16.1s h4
[ ]  404808       0       0  404808 / 1000000    16.2s h4
[ ]  407359       0       0  407359 / 1000000    16.3s h4
[ ]  409888       0       0  409888 / 1000000    16.4s h4
[ ]  412411       0       0  412411 / 1000000    16.5s h4
[ ]  414970       0       0  414970 / 1000000    16.6s h4
[ ]  417587       0       0  417587 / 1000000    16.7s h4
[ ]  420194       0       0  420194 / 1000000    16.8s h4
[ ]  422807       0       0  422807 / 1000000    16.9s h4
[ ]  425387       0       0  425387 / 1000000    17.0s h4
[ ]  427922       0       0  427922 / 1000000    17.1s h4
[ ]  430450       0       0  430450 / 1000000    17.2s h4
[ ]  433022       0       0  433022 / 1000000    17.3s h4
[ ]  435418       0       0  435418 / 1000000    17.4s h4
[ ]  437936       0       0  437936 / 1000000    17.5s h4
[ ]  440522       0       0  440522 / 1000000    17.6s h4
[ ]  443031       0       0  443031 / 1000000    17.7s h4
[ ]  445571       0       0  445571 / 1000000    17.8s h4
[ ]  447965       0       0  447965 / 1000000    17.9s h4
[ ]  450492       0       0  450492 / 1000000    18.0s h4
[ ]  452856       0       0  452856 / 1000000    18.1s h4
[ ]  455267       0       0  455267 / 1000000    18.2s h4
[ ]  457850       0       0  457850 / 1000000    18.3s h4
[ ]  460194       0       0  460194 / 1000000    18.4s h4
[ ]  462547       0       0  462547 / 1000000    18.5s h4
[ ]  464965       0       0  464965 / 1000000    18.6s h4
[ ]  467074       0       0  467074 / 1000000    18.7s h4
[ ]  469335       0       0  469335 / 1000000    18.8s h4
[ ]  471807       0       0  471807 / 1000000    18.9s h4
[ ]  474312       0       0  474312 / 1000000    19.0s h4
[ ]  476813       0       0  476813 / 1000000    19.1s h4
[ ]  479276       0       0  479276 / 1000000    19.2s h4
[ ]  481686       0       0  481686 / 1000000    19.3s h4
[ ]  484162       0       0  484162 / 1000000    19.4s h4
[ ]  486671       0       0  486671 / 1000000    19.5s h4
[ ]  489247       0       0  489247 / 1000000    19.6s h4
[ ]  491720       0       0  491720 / 1000000    19.7s h4
[ ]  494152       0       0  494152 / 1000000    19.8s h4
[ ]  496686       0       0  496686 / 1000000    19.9s h4
[ ]  499250       0       0  499250 / 1000000    20.0s h4
[ ]  501758       0       0  501758 / 1000000    20.1s h4
[ ]  504217       0       0  504217 / 1000000    20.2s h4
[ ]  506742       0       0  506742 / 1000000    20.3s h4
[ ]  509279       0       0  509279 / 1000000    20.4s h4
[ ]  511771       0       0  511771 / 1000000    20.5s h4
[ ]  514223       0       0  514223 / 1000000    20.6s h4
[ ]  516669       0       0  516669 / 1000000    20.7s h4
[ ]  519172       0       0  519172 / 1000000    20.8s h4
[ ]  521631       0       0  521631 / 1000000    20.9s h4
[ ]  524158       0       0  524158 / 1000000    21.0s h4
[ ]  526636       0       0  526636 / 1000000    21.1s h4
[ ]  529091       0       0  529091 / 1000000    21.2s h4
[ ]  531599       0       0  531599 / 1000000    21.3s h4
[ ]  534040       0       0  534040 / 1000000    21.4s h4
[ ]  536505       0       0  536505 / 1000000    21.5s h4
[ ]  539001       0       0  539001 / 1000000    21.6s h4
[ ]  541519       0       0  541519 / 1000000    21.7s h4
[ ]  543942       0       0  543942 / 1000000    21.8s h4
[ ]  546398       0       0  546398 / 1000000    21.9s h4
[ ]  548894       0       0  548894 / 1000000    22.0s h4
[ ]  551313       0       0  551313 / 1000000    22.1s h4
[ ]  553791       0       0  553791 / 1000000    22.2s h4
[ ]  556204       0       0  556204 / 1000000    22.3s h4
[ ]  558779       0       0  558779 / 1000000    22.4s h4
[ ]  561285       0       0  561285 / 1000000    22.5s h4
[ ]  563677       0       0  563677 / 1000000    22.6s h4
[ ]  566193       0       0  566193 / 1000000    22.7s h4
[ ]  568675       0       0  568675 / 1000000    22.8s h4
[ ]  571155       0       0  571155 / 1000000    22.9s h4
[ ]  573553       0       0  573553 / 1000000    23.0s h4
[ ]  575406       0       0  575406 / 1000000    23.1s h4
[ ]  577699       0       0  577699 / 1000000    23.2s h4
[ ]  580121       0       0  580121 / 1000000    23.3s h4
[ ]  582569       0       0  582569 / 1000000    23.4s h4
[ ]  585182       0       0  585182 / 1000000    23.5s h4
[ ]  587686       0       0  587686 / 1000000    23.6s h4
[ ]  590278       0       0  590278 / 1000000    23.7s h4
[ ]  592653       0       0  592653 / 1000000    23.8s h4
[ ]  595358       0       0  595358 / 1000000    23.9s h4
[ ]  597874       0       0  597874 / 1000000    24.0s h4
[ ]  600309       0       0  600309 / 1000000    24.1s h4
[ ]  602828       0       0  602828 / 1000000    24.2s h4
[ ]  605331       0       0  605331 / 1000000    24.3s h4
[ ]  607843       0       0  607843 / 1000000    24.4s h4
[ ]  610341       0       0  610341 / 1000000    24.5s h4
[ ]  612886       0       0  612886 / 1000000    24.6s h4
[ ]  615446       0       0  615446 / 1000000    24.7s h4
[ ]  617987       0       0  617987 / 1000000    24.8s h4
[ ]  620446       0       0  620446 / 1000000    24.9s h4
[ ]  622943       0       0  622943 / 1000000    25.0s h4
[ ]  625425       0       0  625425 / 1000000    25.1s h4
[ ]  627902       0       0  627902 / 1000000    25.2s h4
[ ]  630155       0       0  630155 / 1000000    25.3s h4
[ ]  632655       0       0  632655 / 1000000    25.4s h4
[ ]  635157       0       0  635157 / 1000000    25.5s h4
[ ]  637553       0       0  637553 / 1000000    25.6s h4
[ ]  639885       0       0  639885 / 1000000    25.7s h4
[ ]  642392       0       0  642392 / 1000000    25.8s h4
[ ]  644856       0       0  644856 / 1000000    25.9s h4
[ ]  647307       0       0  647307 / 1000000    26.0s h4
[ ]  649135       0       0  649135 / 1000000    26.1s h4
[ ]  651319       0       0  651319 / 1000000    26.2s h4
[ ]  653829       0       0  653829 / 1000000    26.3s h4
[ ]  656353       0       0  656353 / 1000000    26.4s h4
[ ]  658862       0       0  658862 / 1000000    26.5s h4
[ ]  661314       0       0  661314 / 1000000    26.6s h4
[ ]  663816       0       0  663816 / 1000000    26.7s h4
[ ]  666212       0       0  666212 / 1000000    26.8s h4
[ ]  668747       0       0  668747 / 1000000    26.9s h4
[ ]  671256       0       0  671256 / 1000000    27.0s h4
[ ]  673684       0       0  673684 / 1000000    27.1s h4
[ ]  676117       0       0  676117 / 1000000    27.2s h4
[ ]  678478       0       0  678478 / 1000000    27.3s h4
[ ]  681093       0       0  681093 / 1000000    27.4s h4
[ ]  683526       0       0  683526 / 1000000    27.5s h4
[ ]  686052       0       0  686052 / 1000000    27.6s h4
[ ]  688507       0       0  688507 / 1000000    27.7s h4
[ ]  690947       0       0  690947 / 1000000    27.8s h4 (collecting)
[ ]  693462       0       0  693462 / 1000000    27.9s h4
[ ]  695896       0       0  695896 / 1000000    28.0s h4
[ ]  698297       0       0  698297 / 1000000    28.1s h4
[ ]  700783       0       0  700783 / 1000000    28.2s h4
[ ]  703253       0       0  703253 / 1000000    28.3s h4
[ ]  705658       0       0  705658 / 1000000    28.4s h4
[ ]  708180       0       0  708180 / 1000000    28.5s h4
[ ]  710706       0       0  710706 / 1000000    28.6s h4
[ ]  713294       0       0  713294 / 1000000    28.7s h4
[ ]  715795       0       0  715795 / 1000000    28.8s h4
[ ]  718248       0       0  718248 / 1000000    28.9s h4
[ ]  720700       0       0  720700 / 1000000    29.0s h4
[ ]  723203       0       0  723203 / 1000000    29.1s h4
[ ]  725705       0       0  725705 / 1000000    29.2s h4
[ ]  728298       0       0  728298 / 1000000    29.3s h4
[ ]  730908       0       0  730908 / 1000000    29.4s h4
[ ]  733560       0       0  733560 / 1000000    29.5s h4
[ ]  736141       0       0  736141 / 1000000    29.6s h4
[ ]  738720       0       0  738720 / 1000000    29.7s h4
[ ]  741237       0       0  741237 / 1000000    29.8s h4 (generating)
[ ]  743716       0       0  743716 / 1000000    29.9s h4
[ ]  746219       0       0  746219 / 1000000    30.0s h4
[ ]  748588       0       0  748588 / 1000000    30.1s h4
[ ]  751092       0       0  751092 / 1000000    30.2s h4
[ ]  753657       0       0  753657 / 1000000    30.3s h4
[ ]  756186       0       0  756186 / 1000000    30.4s h4
[ ]  758698       0       0  758698 / 1000000    30.5s h4
[ ]  761186       0       0  761186 / 1000000    30.6s h4
[ ]  763716       0       0  763716 / 1000000    30.7s h4
[ ]  766251       0       0  766251 / 1000000    30.8s h4
[ ]  768652       0       0  768652 / 1000000    30.9s h4
[ ]  771178       0       0  771178 / 1000000    31.0s h4
[ ]  773697       0       0  773697 / 1000000    31.1s h4
[ ]  776174       0       0  776174 / 1000000    31.2s h4
[ ]  778701       0       0  778701 / 1000000    31.3s h4 (collecting)
[ ]  781151       0       0  781151 / 1000000    31.4s h4
[ ]  783719       0       0  783719 / 1000000    31.5s h4
[ ]  786223       0       0  786223 / 1000000    31.6s h4
[ ]  788728       0       0  788728 / 1000000    31.7s h4
[ ]  791216       0       0  791216 / 1000000    31.8s h4
[ ]  793648       0       0  793648 / 1000000    31.9s h4
[ ]  795817       0       0  795817 / 1000000    32.0s h4
[ ]  798273       0       0  798273 / 1000000    32.1s h4
[ ]  800642       0       0  800642 / 1000000    32.2s h4
[ ]  803108       0       0  803108 / 1000000    32.3s h4
[ ]  805505       0       0  805505 / 1000000    32.4s h4
[ ]  807860       0       0  807860 / 1000000    32.5s h4
[ ]  810286       0       0  810286 / 1000000    32.6s h4
[ ]  812812       0       0  812812 / 1000000    32.7s h4
[ ]  815277       0       0  815277 / 1000000    32.8s h4
[ ]  817814       0       0  817814 / 1000000    32.9s h4
[ ]  820360       0       0  820360 / 1000000    33.0s h4
[ ]  822881       0       0  822881 / 1000000    33.1s h4
[ ]  825418       0       0  825418 / 1000000    33.2s h4
[ ]  827217       0       0  827217 / 1000000    33.3s h4
[ ]  829662       0       0  829662 / 1000000    33.4s h4
[ ]  832094       0       0  832094 / 1000000    33.5s h4
[ ]  834504       0       0  834504 / 1000000    33.6s h4
[ ]  836971       0       0  836971 / 1000000    33.7s h4
[ ]  839571       0       0  839571 / 1000000    33.8s h4
[ ]  842079       0       0  842079 / 1000000    33.9s h4
[ ]  844538       0       0  844538 / 1000000    34.0s h4
[ ]  847056       0       0  847056 / 1000000    34.1s h4
[ ]  849647       0       0  849647 / 1000000    34.2s h4
[ ]  852119       0       0  852119 / 1000000    34.3s h4
[ ]  854529       0       0  854529 / 1000000    34.4s h4
[ ]  856997       0       0  856997 / 1000000    34.5s h4
[ ]  859264       0       0  859264 / 1000000    34.6s h4
[ ]  861186       0       0  861186 / 1000000    34.7s h4
[ ]  863770       0       0  863770 / 1000000    34.8s h4
[ ]  866170       0       0  866170 / 1000000    34.9s h4
[ ]  868593       0       0  868593 / 1000000    35.0s h4
[ ]  871030       0       0  871030 / 1000000    35.1s h4
[ ]  873562       0       0  873562 / 1000000    35.2s h4
[ ]  876052       0       0  876052 / 1000000    35.3s h4 (collecting)
[ ]  878566       0       0  878566 / 1000000    35.4s h4
[ ]  881087       0       0  881087 / 1000000    35.5s h4
[ ]  883676       0       0  883676 / 1000000    35.6s h4
[ ]  886221       0       0  886221 / 1000000    35.7s h4
[ ]  888729       0       0  888729 / 1000000    35.8s h4
[ ]  891238       0       0  891238 / 1000000    35.9s h4
[ ]  893701       0       0  893701 / 1000000    36.0s h4
[ ]  896120       0       0  896120 / 1000000    36.1s h4
[ ]  898523       0       0  898523 / 1000000    36.2s h4
[ ]  900910       0       0  900910 / 1000000    36.3s h4
[ ]  903406       0       0  903406 / 1000000    36.4s h4
[ ]  905838       0       0  905838 / 1000000    36.5s h4
[ ]  908289       0       0  908289 / 1000000    36.6s h4
[ ]  910726       0       0  910726 / 1000000    36.7s h4
[ ]  913208       0       0  913208 / 1000000    36.8s h4
[ ]  915702       0       0  915702 / 1000000    36.9s h4
[ ]  918022       0       0  918022 / 1000000    37.0s h4
[ ]  920522       0       0  920522 / 1000000    37.1s h4
[ ]  922937       0       0  922937 / 1000000    37.2s h4
[ ]  925385       0       0  925385 / 1000000    37.3s h4
[ ]  927928       0       0  927928 / 1000000    37.4s h4
[ ]  930414       0       0  930414 / 1000000    37.5s h4
[ ]  932925       0       0  932925 / 1000000    37.6s h4
[ ]  935401       0       0  935401 / 1000000    37.7s h4
[ ]  937892       0       0  937892 / 1000000    37.8s h4
[ ]  940449       0       0  940449 / 1000000    37.9s h4
[ ]  942988       0       0  942988 / 1000000    38.0s h4 (collecting)
[ ]  945608       0       0  945608 / 1000000    38.1s h4
[ ]  948145       0       0  948145 / 1000000    38.2s h4
[ ]  950698       0       0  950698 / 1000000    38.3s h4
[ ]  953226       0       0  953226 / 1000000    38.4s h4
[ ]  955826       0       0  955826 / 1000000    38.5s h4
[ ]  958308       0       0  958308 / 1000000    38.6s h4
[ ]  960840       0       0  960840 / 1000000    38.7s h4
[ ]  963360       0       0  963360 / 1000000    38.8s h4
[ ]  965873       0       0  965873 / 1000000    38.9s h4
[ ]  968371       0       0  968371 / 1000000    39.0s h4
[ ]  970871       0       0  970871 / 1000000    39.1s h4
[ ]  973397       0       0  973397 / 1000000    39.2s h4
[ ]  975735       0       0  975735 / 1000000    39.3s h4
[ ]  978207       0       0  978207 / 1000000    39.4s h4
[ ]  980707       0       0  980707 / 1000000    39.5s h4
[ ]  983244       0       0  983244 / 1000000    39.6s h4
[ ]  985697       0       0  985697 / 1000000    39.7s h4
[ ]  988078       0       0  988078 / 1000000    39.8s h4
[ ]  990499       0       0  990499 / 1000000    39.9s h4
[ ]  993147       0       0  993147 / 1000000    40.0s h4
[ ]  995666       0       0  995666 / 1000000    40.1s h4
[ ]  997958       0       0  997958 / 1000000    40.2s h4
[✓] 1000000       0       0 1000000 / 1000000    40.3s h4
- ================================================================================
- success (ran 6 tests)
-> compiled  dates_calc.0.0.1
-> removed   dates_calc.0.0.1
-> installed dates_calc.0.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 12:38.56 ---> saved as "c98d92cfa58c3188cafef780464afd1534be2eef8502f3893a69252a6c75f45b"
Job succeeded
2026-03-02 12:39.38: Job succeeded