(not at the head of any monitored branch or PR)
2026-04-10 17:57.46: New job: test dates_calc.0.0.1 with dune.3.22.2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29704/head (3e0c395e7b1393a792367f8edca3654dac71e6fd)
                              on debian-13-ocaml-4.14/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/29704/head" && git reset --hard 3e0c395e
git fetch origin master
git merge --no-edit 9d8ceab8e9f49f5671cf459997c8a47cf0e675ca
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4
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 dune.3.22.2 3.22.2
RUN opam reinstall dune.3.22.2; \
    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" != 'dune.3.22.2' && 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-04-10 17:57.46: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4-dune.3.22.2-dates_calc.0.0.1-3e0c395e7b1393a792367f8edca3654dac71e6fd"
2026-04-10 17:57.46: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
 (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 dune.3.22.2 3.22.2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune.3.22.2;\
             \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\" != 'dune.3.22.2' && 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-04-10 17:57.46: Waiting for resource in pool OCluster
2026-04-11 03:36.25: Waiting for worker…
2026-04-11 03:38.14: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
HEAD is now at 9d8ceab8e9 Merge pull request #29697 from filipeom/opam-publish-smtml.0.25.0
Updating 9d8ceab8e9..3e0c395e7b
Fast-forward
 packages/chrome-trace/chrome-trace.3.22.2/opam     | 39 +++++++++++
 .../dune-action-plugin.3.22.2/opam                 | 52 +++++++++++++++
 .../dune-action-trace.3.22.2/opam                  | 39 +++++++++++
 .../dune-build-info/dune-build-info.3.22.2/opam    | 45 +++++++++++++
 .../dune-configurator.3.22.2/opam                  | 49 ++++++++++++++
 packages/dune-glob/dune-glob.3.22.2/opam           | 42 ++++++++++++
 .../dune-private-libs.3.22.2/opam                  | 50 +++++++++++++++
 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam     | 41 ++++++++++++
 packages/dune-rpc/dune-rpc.3.22.2/opam             | 44 +++++++++++++
 packages/dune-site/dune-site.3.22.2/opam           | 37 +++++++++++
 packages/dune/dune.3.22.2/opam                     | 75 ++++++++++++++++++++++
 packages/dyn/dyn.3.22.2/opam                       | 40 ++++++++++++
 packages/fs-io/fs-io.3.22.2/opam                   | 39 +++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam         | 43 +++++++++++++
 packages/ordering/ordering.3.22.2/opam             | 38 +++++++++++
 packages/stdune/stdune.3.22.2/opam                 | 46 +++++++++++++
 packages/top-closure/top-closure.3.22.2/opam       | 38 +++++++++++
 packages/xdg/xdg.3.22.2/opam                       | 39 +++++++++++
 18 files changed, 796 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.22.2/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.2/opam
 create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.2/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.22.2/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.22.2/opam
 create mode 100644 packages/dune-glob/dune-glob.3.22.2/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.2/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.22.2/opam
 create mode 100644 packages/dune-site/dune-site.3.22.2/opam
 create mode 100644 packages/dune/dune.3.22.2/opam
 create mode 100644 packages/dyn/dyn.3.22.2/opam
 create mode 100644 packages/fs-io/fs-io.3.22.2/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam
 create mode 100644 packages/ordering/ordering.3.22.2/opam
 create mode 100644 packages/stdune/stdune.3.22.2/opam
 create mode 100644 packages/top-closure/top-closure.3.22.2/opam
 create mode 100644 packages/xdg/xdg.3.22.2/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
2026-04-11 03:38.24 ---> using "e7349b5faa6e8ea47e3f73a0784842b9d8524e468ce596e92633dbea53bd1c16" 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-04-11 03:38.24 ---> using "345d07c1ddcf0b692213607682954d9bdf190a7dc793f33951a109185e732dcb" 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.

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.

Continue? [Y/n] y
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-11 03:38.24 ---> using "6e021c655ca00bde9af60e23db55b09a0bcc3db0d3ca38d66f78ad53e254a31c" 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       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.3"}]
# compiler-packages    ocaml-base-compiler.4.14.3, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.3
2026-04-11 03:38.24 ---> using "7b2a5ae62cf702b99c177da358372ff585494a0b1c5dfffe5c4eda3046bc59fb" 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-04-11 03:38.24 ---> using "2d8e28a183d0990d4c5f7a587471f7c743cdf0d9f00bdf4de7761e94ec09202a" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-11 03:38.26 ---> using "43c49734bd8015921029b9a907dd77c0e05208c46b686916515831f5a9e9d500" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-11 03:38.26 ---> using "bb36992fd0066703535b2984ee1ead3db92bb1f04a8df092631924067dac4082" 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 [121 kB]
- Fetched 211 kB in 0s (2107 kB/s)
- Reading package lists...
2026-04-11 03:38.26 ---> using "e0d9ada0baddc41d2c835edef7d0cf7cceebd2dadac41fda17c9e860b5313a74" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.2 3.22.2"))
dune is now pinned to version 3.22.2
2026-04-11 03:38.26 ---> using "a60db6b945be7f2fc9953546cee71bf416921d54f02951a4c9176dbdf1065520" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune.3.22.2;\
                        \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\" != 'dune.3.22.2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dune.3.22.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install dune 3.22.2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.2  (cached)
-> installed dune.3.22.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 03:38.26 ---> using "59eacf68137f7dccf94b9ebc5274fdc537230a8c71c2eb52f8fcf698829c6d46" 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 1 package
  - install dates_calc 0.0.1

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dates_calc.0.0.1  (https://opam.ocaml.org/cache)
-> installed dates_calc.0.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 03:38.34 ---> saved as "708eb75a9d0f1b9eaed98b9954a07de693082cf2bf665e6bb04bfff12e336153"

/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)
-> installed ocaml-syntax-shims.1.0.0
-> retrieved topkg.1.1.1  (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed re.1.14.0
-> installed ounit2.2.2.7
-> installed qcheck-core.0.91
-> 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-04-11 03:40.09 ---> saved as "421e542a05a0e30e7c194caac90427374b51fd4cb4761370e62dd16be849e439"

/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/4.14/.opam-switch/build/dates_calc.0.0.1)
- (cd _build/default/test && ./unit.exe)
- Testing `unit'.
- This run has ID `VSLATFJV'.
- 
-   [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/4.14/.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: 276429722
-   generated   error    fail    pass /   total     time test name
- 
[ ]       0       0       0       0 /    1000     0.0s anon_test_1
[ ]     243       0       0     243 /    1000     0.1s anon_test_1
[ ]     524       0       0     524 /    1000     0.2s anon_test_1
[ ]     783       0       0     783 /    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
[ ]      13       0       0      13 /    1000     0.1s anon_test_2
[ ]      24       0       0      24 /    1000     0.2s anon_test_2
[ ]      36       0       0      36 /    1000     0.3s anon_test_2
[ ]      49       0       0      49 /    1000     0.4s anon_test_2
[ ]      59       0       0      59 /    1000     0.5s anon_test_2
[ ]      69       0       0      69 /    1000     0.6s anon_test_2
[ ]      76       0       0      76 /    1000     0.7s anon_test_2
[ ]      89       0       0      89 /    1000     0.8s anon_test_2
[ ]      97       0       0      97 /    1000     1.0s anon_test_2
[ ]     102       0       0     102 /    1000     1.1s anon_test_2
[ ]     109       0       0     109 /    1000     1.2s anon_test_2
[ ]     116       0       0     116 /    1000     1.3s anon_test_2
[ ]     124       0       0     124 /    1000     1.4s anon_test_2
[ ]     135       0       0     135 /    1000     1.5s anon_test_2
[ ]     142       0       0     142 /    1000     1.6s anon_test_2
[ ]     151       0       0     151 /    1000     1.7s anon_test_2
[ ]     158       0       0     158 /    1000     1.8s anon_test_2
[ ]     175       0       0     175 /    1000     1.9s anon_test_2
[ ]     187       0       0     187 /    1000     2.0s anon_test_2
[ ]     200       0       0     200 /    1000     2.1s anon_test_2
[ ]     209       0       0     209 /    1000     2.3s anon_test_2
[ ]     218       0       0     218 /    1000     2.4s anon_test_2
[ ]     235       0       0     235 /    1000     2.5s anon_test_2
[ ]     248       0       0     248 /    1000     2.6s anon_test_2
[ ]     254       0       0     254 /    1000     2.7s anon_test_2
[ ]     265       0       0     265 /    1000     2.8s anon_test_2
[ ]     278       0       0     278 /    1000     2.9s anon_test_2
[ ]     288       0       0     288 /    1000     3.0s anon_test_2
[ ]     301       0       0     301 /    1000     3.1s anon_test_2
[ ]     307       0       0     307 /    1000     3.3s anon_test_2
[ ]     323       0       0     323 /    1000     3.4s anon_test_2
[ ]     333       0       0     333 /    1000     3.5s anon_test_2
[ ]     347       0       0     347 /    1000     3.6s anon_test_2
[ ]     361       0       0     361 /    1000     3.7s anon_test_2
[ ]     373       0       0     373 /    1000     3.8s anon_test_2
[ ]     389       0       0     389 /    1000     3.9s anon_test_2
[ ]     395       0       0     395 /    1000     4.0s anon_test_2
[ ]     412       0       0     412 /    1000     4.1s anon_test_2
[ ]     421       0       0     421 /    1000     4.2s anon_test_2
[ ]     438       0       0     438 /    1000     4.3s anon_test_2
[ ]     449       0       0     449 /    1000     4.5s anon_test_2
[ ]     464       0       0     464 /    1000     4.6s anon_test_2
[ ]     479       0       0     479 /    1000     4.7s anon_test_2
[ ]     490       0       0     490 /    1000     4.8s anon_test_2
[ ]     500       0       0     500 /    1000     4.9s anon_test_2
[ ]     512       0       0     512 /    1000     5.0s anon_test_2
[ ]     525       0       0     525 /    1000     5.1s anon_test_2
[ ]     533       0       0     533 /    1000     5.2s anon_test_2
[ ]     546       0       0     546 /    1000     5.3s anon_test_2
[ ]     562       0       0     562 /    1000     5.4s anon_test_2
[ ]     572       0       0     572 /    1000     5.5s anon_test_2
[ ]     582       0       0     582 /    1000     5.6s anon_test_2
[ ]     597       0       0     597 /    1000     5.7s anon_test_2
[ ]     611       0       0     611 /    1000     5.8s anon_test_2
[ ]     623       0       0     623 /    1000     6.0s anon_test_2
[ ]     636       0       0     636 /    1000     6.1s anon_test_2
[ ]     648       0       0     648 /    1000     6.2s anon_test_2
[ ]     660       0       0     660 /    1000     6.3s anon_test_2
[ ]     671       0       0     671 /    1000     6.4s anon_test_2
[ ]     683       0       0     683 /    1000     6.5s anon_test_2
[ ]     694       0       0     694 /    1000     6.6s anon_test_2
[ ]     710       0       0     710 /    1000     6.7s anon_test_2
[ ]     728       0       0     728 /    1000     6.8s anon_test_2
[ ]     739       0       0     739 /    1000     7.0s anon_test_2
[ ]     754       0       0     754 /    1000     7.1s anon_test_2
[ ]     760       0       0     760 /    1000     7.2s anon_test_2
[ ]     771       0       0     771 /    1000     7.3s anon_test_2
[ ]     780       0       0     780 /    1000     7.4s anon_test_2
[ ]     798       0       0     798 /    1000     7.5s anon_test_2
[ ]     808       0       0     808 /    1000     7.6s anon_test_2
[ ]     824       0       0     824 /    1000     7.7s anon_test_2
[ ]     838       0       0     838 /    1000     7.8s anon_test_2
[ ]     851       0       0     851 /    1000     7.9s anon_test_2
[ ]     867       0       0     867 /    1000     8.0s anon_test_2
[ ]     883       0       0     883 /    1000     8.2s anon_test_2
[ ]     894       0       0     894 /    1000     8.3s anon_test_2
[ ]     912       0       0     912 /    1000     8.4s anon_test_2
[ ]     924       0       0     924 /    1000     8.5s anon_test_2
[ ]     940       0       0     940 /    1000     8.6s anon_test_2
[ ]     956       0       0     956 /    1000     8.7s anon_test_2
[ ]     972       0       0     972 /    1000     8.8s anon_test_2
[ ]     988       0       0     988 /    1000     8.9s anon_test_2
[ ]     997       0       0     997 /    1000     9.0s anon_test_2
[✓]    1000       0       0    1000 /    1000     9.1s anon_test_2
- 
[ ]       0       0       0       0 / 1000000     0.0s h1
[ ]    8604       0       0    8604 / 1000000     0.1s h1
[ ]   17609       0       0   17609 / 1000000     0.2s h1
[ ]   26630       0       0   26630 / 1000000     0.3s h1
[ ]   35216       0       0   35216 / 1000000     0.4s h1
[ ]   43870       0       0   43870 / 1000000     0.5s h1
[ ]   52268       0       0   52268 / 1000000     0.6s h1
[ ]   61604       0       0   61604 / 1000000     0.7s h1 (collecting)
[ ]   69741       0       0   69741 / 1000000     0.8s h1
[ ]   78380       0       0   78380 / 1000000     0.9s h1
[ ]   87530       0       0   87530 / 1000000     1.0s h1
[ ]   96317       0       0   96317 / 1000000     1.1s h1
[ ]  105223       0       0  105223 / 1000000     1.2s h1 (collecting)
[ ]  114010       0       0  114010 / 1000000     1.3s h1 (collecting)
[ ]  122922       0       0  122922 / 1000000     1.4s h1
[ ]  131243       0       0  131243 / 1000000     1.5s h1
[ ]  141349       0       0  141349 / 1000000     1.6s h1 (collecting)
[ ]  151374       0       0  151374 / 1000000     1.7s h1
[ ]  160663       0       0  160663 / 1000000     1.8s h1
[ ]  170106       0       0  170106 / 1000000     1.9s h1
[ ]  179578       0       0  179578 / 1000000     2.0s h1
[ ]  188161       0       0  188161 / 1000000     2.1s h1
[ ]  197111       0       0  197111 / 1000000     2.2s h1 (collecting)
[ ]  205688       0       0  205688 / 1000000     2.3s h1
[ ]  214900       0       0  214900 / 1000000     2.4s h1
[ ]  223632       0       0  223632 / 1000000     2.5s h1
[ ]  232612       0       0  232612 / 1000000     2.6s h1
[ ]  241533       0       0  241533 / 1000000     2.7s h1
[ ]  250166       0       0  250166 / 1000000     2.8s h1
[ ]  258994       0       0  258994 / 1000000     2.9s h1
[ ]  266856       0       0  266856 / 1000000     3.0s h1
[ ]  274753       0       0  274753 / 1000000     3.1s h1
[ ]  282972       0       0  282972 / 1000000     3.2s h1
[ ]  291528       0       0  291528 / 1000000     3.3s h1
[ ]  300440       0       0  300440 / 1000000     3.4s h1
[ ]  309146       0       0  309146 / 1000000     3.5s h1 (generating)
[ ]  318536       0       0  318536 / 1000000     3.6s h1
[ ]  327085       0       0  327085 / 1000000     3.7s h1 (collecting)
[ ]  335942       0       0  335942 / 1000000     3.8s h1
[ ]  343410       0       0  343410 / 1000000     3.9s h1
[ ]  351514       0       0  351514 / 1000000     4.0s h1
[ ]  360321       0       0  360321 / 1000000     4.1s h1
[ ]  369228       0       0  369228 / 1000000     4.2s h1
[ ]  378101       0       0  378101 / 1000000     4.3s h1
[ ]  387187       0       0  387187 / 1000000     4.4s h1
[ ]  396436       0       0  396436 / 1000000     4.5s h1
[ ]  405243       0       0  405243 / 1000000     4.6s h1
[ ]  413978       0       0  413978 / 1000000     4.7s h1
[ ]  422989       0       0  422989 / 1000000     4.8s h1
[ ]  431890       0       0  431890 / 1000000     4.9s h1
[ ]  440625       0       0  440625 / 1000000     5.0s h1
[ ]  449401       0       0  449401 / 1000000     5.1s h1
[ ]  458434       0       0  458434 / 1000000     5.2s h1
[ ]  466988       0       0  466988 / 1000000     5.3s h1 (collecting)
[ ]  475959       0       0  475959 / 1000000     5.4s h1
[ ]  485061       0       0  485061 / 1000000     5.5s h1
[ ]  494184       0       0  494184 / 1000000     5.6s h1
[ ]  503357       0       0  503357 / 1000000     5.7s h1
[ ]  512271       0       0  512271 / 1000000     5.8s h1
[ ]  521346       0       0  521346 / 1000000     5.9s h1
[ ]  530200       0       0  530200 / 1000000     6.0s h1
[ ]  539314       0       0  539314 / 1000000     6.1s h1
[ ]  548155       0       0  548155 / 1000000     6.2s h1
[ ]  556954       0       0  556954 / 1000000     6.3s h1
[ ]  565969       0       0  565969 / 1000000     6.4s h1
[ ]  574521       0       0  574521 / 1000000     6.5s h1
[ ]  583468       0       0  583468 / 1000000     6.6s h1
[ ]  592476       0       0  592476 / 1000000     6.7s h1
[ ]  601602       0       0  601602 / 1000000     6.8s h1
[ ]  610974       0       0  610974 / 1000000     6.9s h1
[ ]  620205       0       0  620205 / 1000000     7.0s h1
[ ]  629662       0       0  629662 / 1000000     7.1s h1
[ ]  639005       0       0  639005 / 1000000     7.2s h1
[ ]  648075       0       0  648075 / 1000000     7.3s h1
[ ]  657503       0       0  657503 / 1000000     7.4s h1
[ ]  666207       0       0  666207 / 1000000     7.5s h1
[ ]  675127       0       0  675127 / 1000000     7.6s h1
[ ]  684377       0       0  684377 / 1000000     7.7s h1
[ ]  693676       0       0  693676 / 1000000     7.8s h1
[ ]  702807       0       0  702807 / 1000000     7.9s h1
[ ]  712036       0       0  712036 / 1000000     8.0s h1
[ ]  721342       0       0  721342 / 1000000     8.1s h1
[ ]  730513       0       0  730513 / 1000000     8.2s h1
[ ]  739221       0       0  739221 / 1000000     8.3s h1
[ ]  747624       0       0  747624 / 1000000     8.4s h1
[ ]  755440       0       0  755440 / 1000000     8.5s h1 (collecting)
[ ]  763005       0       0  763005 / 1000000     8.6s h1
[ ]  771709       0       0  771709 / 1000000     8.7s h1
[ ]  780281       0       0  780281 / 1000000     8.8s h1
[ ]  789111       0       0  789111 / 1000000     8.9s h1
[ ]  796680       0       0  796680 / 1000000     9.0s h1
[ ]  804169       0       0  804169 / 1000000     9.1s h1
[ ]  812604       0       0  812604 / 1000000     9.2s h1
[ ]  821665       0       0  821665 / 1000000     9.3s h1
[ ]  830884       0       0  830884 / 1000000     9.4s h1
[ ]  840331       0       0  840331 / 1000000     9.5s h1
[ ]  849787       0       0  849787 / 1000000     9.6s h1
[ ]  859283       0       0  859283 / 1000000     9.7s h1
[ ]  867136       0       0  867136 / 1000000     9.8s h1
[ ]  875889       0       0  875889 / 1000000     9.9s h1
[ ]  885011       0       0  885011 / 1000000    10.0s h1
[ ]  894263       0       0  894263 / 1000000    10.1s h1
[ ]  903550       0       0  903550 / 1000000    10.2s h1
[ ]  912769       0       0  912769 / 1000000    10.3s h1
[ ]  921972       0       0  921972 / 1000000    10.4s h1
[ ]  931105       0       0  931105 / 1000000    10.5s h1
[ ]  940254       0       0  940254 / 1000000    10.6s h1
[ ]  949451       0       0  949451 / 1000000    10.7s h1
[ ]  958353       0       0  958353 / 1000000    10.8s h1
[ ]  966965       0       0  966965 / 1000000    10.9s h1
[ ]  975711       0       0  975711 / 1000000    11.0s h1
[ ]  984511       0       0  984511 / 1000000    11.1s h1
[ ]  992687       0       0  992687 / 1000000    11.2s h1
[✓] 1000000       0       0 1000000 / 1000000    11.3s h1
- 
[ ]       0       0       0       0 / 1000000     0.0s h2
[ ]    4488       0       0    4488 / 1000000     0.1s h2 (collecting)
[ ]    8963       0       0    8963 / 1000000     0.2s h2
[ ]   13477       0       0   13477 / 1000000     0.3s h2
[ ]   17909       0       0   17909 / 1000000     0.4s h2
[ ]   22365       0       0   22365 / 1000000     0.5s h2
[ ]   26868       0       0   26868 / 1000000     0.6s h2
[ ]   31224       0       0   31224 / 1000000     0.7s h2
[ ]   35845       0       0   35845 / 1000000     0.8s h2
[ ]   40575       0       0   40575 / 1000000     0.9s h2
[ ]   44981       0       0   44981 / 1000000     1.0s h2
[ ]   49926       0       0   49926 / 1000000     1.1s h2
[ ]   55148       0       0   55148 / 1000000     1.2s h2
[ ]   60445       0       0   60445 / 1000000     1.3s h2
[ ]   65648       0       0   65648 / 1000000     1.4s h2
[ ]   70909       0       0   70909 / 1000000     1.5s h2 (collecting)
[ ]   76144       0       0   76144 / 1000000     1.6s h2
[ ]   81348       0       0   81348 / 1000000     1.7s h2
[ ]   86673       0       0   86673 / 1000000     1.8s h2
[ ]   91919       0       0   91919 / 1000000     1.9s h2
[ ]   97119       0       0   97119 / 1000000     2.0s h2
[ ]  102382       0       0  102382 / 1000000     2.1s h2
[ ]  107636       0       0  107636 / 1000000     2.2s h2
[ ]  112818       0       0  112818 / 1000000     2.3s h2 (collecting)
[ ]  118093       0       0  118093 / 1000000     2.4s h2
[ ]  123373       0       0  123373 / 1000000     2.5s h2
[ ]  128597       0       0  128597 / 1000000     2.6s h2
[ ]  133790       0       0  133790 / 1000000     2.7s h2
[ ]  138990       0       0  138990 / 1000000     2.8s h2
[ ]  144251       0       0  144251 / 1000000     2.9s h2
[ ]  149520       0       0  149520 / 1000000     3.0s h2
[ ]  154726       0       0  154726 / 1000000     3.1s h2
[ ]  159903       0       0  159903 / 1000000     3.2s h2 (   testing)
[ ]  165106       0       0  165106 / 1000000     3.3s h2
[ ]  170333       0       0  170333 / 1000000     3.4s h2
[ ]  175467       0       0  175467 / 1000000     3.5s h2
[ ]  180663       0       0  180663 / 1000000     3.6s h2
[ ]  185988       0       0  185988 / 1000000     3.7s h2
[ ]  191207       0       0  191207 / 1000000     3.8s h2
[ ]  196450       0       0  196450 / 1000000     3.9s h2
[ ]  201494       0       0  201494 / 1000000     4.0s h2
[ ]  206805       0       0  206805 / 1000000     4.1s h2
[ ]  214093       0       0  214093 / 1000000     4.2s h2
[ ]  219107       0       0  219107 / 1000000     4.3s h2 (collecting)
[ ]  224067       0       0  224067 / 1000000     4.4s h2
[ ]  228831       0       0  228831 / 1000000     4.5s h2
[ ]  233690       0       0  233690 / 1000000     4.6s h2
[ ]  238408       0       0  238408 / 1000000     4.7s h2
[ ]  243238       0       0  243238 / 1000000     4.8s h2
[ ]  248357       0       0  248357 / 1000000     4.9s h2
[ ]  253069       0       0  253069 / 1000000     5.0s h2 (collecting)
[ ]  257390       0       0  257390 / 1000000     5.1s h2
[ ]  262163       0       0  262163 / 1000000     5.2s h2
[ ]  266974       0       0  266974 / 1000000     5.3s h2
[ ]  272116       0       0  272116 / 1000000     5.4s h2
[ ]  277401       0       0  277401 / 1000000     5.5s h2
[ ]  285375       0       0  285375 / 1000000     5.6s h2
[ ]  293348       0       0  293348 / 1000000     5.7s h2
[ ]  299967       0       0  299967 / 1000000     5.8s h2
[ ]  304735       0       0  304735 / 1000000     5.9s h2 (   testing)
[ ]  309355       0       0  309355 / 1000000     6.0s h2
[ ]  313726       0       0  313726 / 1000000     6.1s h2
[ ]  317841       0       0  317841 / 1000000     6.2s h2
[ ]  322148       0       0  322148 / 1000000     6.3s h2
[ ]  326475       0       0  326475 / 1000000     6.4s h2
[ ]  331020       0       0  331020 / 1000000     6.5s h2
[ ]  336254       0       0  336254 / 1000000     6.6s h2
[ ]  340631       0       0  340631 / 1000000     6.7s h2
[ ]  345590       0       0  345590 / 1000000     6.8s h2
[ ]  351459       0       0  351459 / 1000000     6.9s h2
[ ]  356158       0       0  356158 / 1000000     7.0s h2
[ ]  360735       0       0  360735 / 1000000     7.1s h2
[ ]  365066       0       0  365066 / 1000000     7.2s h2
[ ]  369260       0       0  369260 / 1000000     7.3s h2
[ ]  373718       0       0  373718 / 1000000     7.4s h2
[ ]  377888       0       0  377888 / 1000000     7.5s h2 (collecting)
[ ]  381200       0       0  381200 / 1000000     7.6s h2
[ ]  385073       0       0  385073 / 1000000     7.7s h2
[ ]  388470       0       0  388470 / 1000000     7.8s h2
[ ]  392087       0       0  392087 / 1000000     7.9s h2
[ ]  396634       0       0  396634 / 1000000     8.0s h2
[ ]  401422       0       0  401422 / 1000000     8.1s h2
[ ]  406210       0       0  406210 / 1000000     8.2s h2
[ ]  411111       0       0  411111 / 1000000     8.3s h2
[ ]  415628       0       0  415628 / 1000000     8.4s h2
[ ]  420269       0       0  420269 / 1000000     8.5s h2
[ ]  424979       0       0  424979 / 1000000     8.6s h2
[ ]  429799       0       0  429799 / 1000000     8.7s h2
[ ]  434295       0       0  434295 / 1000000     8.8s h2
[ ]  439066       0       0  439066 / 1000000     8.9s h2
[ ]  443730       0       0  443730 / 1000000     9.0s h2
[ ]  448381       0       0  448381 / 1000000     9.1s h2
[ ]  453275       0       0  453275 / 1000000     9.2s h2
[ ]  458213       0       0  458213 / 1000000     9.3s h2
[ ]  462771       0       0  462771 / 1000000     9.4s h2
[ ]  467657       0       0  467657 / 1000000     9.5s h2
[ ]  472471       0       0  472471 / 1000000     9.6s h2
[ ]  477295       0       0  477295 / 1000000     9.7s h2
[ ]  481910       0       0  481910 / 1000000     9.8s h2
[ ]  486633       0       0  486633 / 1000000     9.9s h2
[ ]  491295       0       0  491295 / 1000000    10.0s h2
[ ]  495996       0       0  495996 / 1000000    10.1s h2
[ ]  500423       0       0  500423 / 1000000    10.2s h2
[ ]  505094       0       0  505094 / 1000000    10.3s h2
[ ]  509626       0       0  509626 / 1000000    10.4s h2
[ ]  514345       0       0  514345 / 1000000    10.5s h2
[ ]  518579       0       0  518579 / 1000000    10.6s h2
[ ]  523288       0       0  523288 / 1000000    10.7s h2
[ ]  527929       0       0  527929 / 1000000    10.8s h2
[ ]  532587       0       0  532587 / 1000000    10.9s h2
[ ]  537169       0       0  537169 / 1000000    11.0s h2
[ ]  541899       0       0  541899 / 1000000    11.1s h2
[ ]  546629       0       0  546629 / 1000000    11.2s h2 (collecting)
[ ]  551635       0       0  551635 / 1000000    11.3s h2
[ ]  556787       0       0  556787 / 1000000    11.4s h2
[ ]  561532       0       0  561532 / 1000000    11.5s h2
[ ]  566161       0       0  566161 / 1000000    11.6s h2
[ ]  570747       0       0  570747 / 1000000    11.7s h2
[ ]  575288       0       0  575288 / 1000000    11.8s h2
[ ]  579666       0       0  579666 / 1000000    11.9s h2
[ ]  584062       0       0  584062 / 1000000    12.0s h2 (generating)
[ ]  588567       0       0  588567 / 1000000    12.1s h2
[ ]  592891       0       0  592891 / 1000000    12.2s h2
[ ]  596896       0       0  596896 / 1000000    12.3s h2
[ ]  601442       0       0  601442 / 1000000    12.4s h2
[ ]  606047       0       0  606047 / 1000000    12.5s h2
[ ]  610809       0       0  610809 / 1000000    12.6s h2
[ ]  615395       0       0  615395 / 1000000    12.7s h2
[ ]  620101       0       0  620101 / 1000000    12.8s h2 (collecting)
[ ]  624673       0       0  624673 / 1000000    12.9s h2
[ ]  629244       0       0  629244 / 1000000    13.0s h2
[ ]  634023       0       0  634023 / 1000000    13.1s h2
[ ]  639040       0       0  639040 / 1000000    13.2s h2
[ ]  644024       0       0  644024 / 1000000    13.3s h2
[ ]  648879       0       0  648879 / 1000000    13.4s h2
[ ]  653715       0       0  653715 / 1000000    13.5s h2
[ ]  658504       0       0  658504 / 1000000    13.6s h2
[ ]  663229       0       0  663229 / 1000000    13.7s h2
[ ]  667827       0       0  667827 / 1000000    13.8s h2
[ ]  672330       0       0  672330 / 1000000    13.9s h2
[ ]  676602       0       0  676602 / 1000000    14.0s h2
[ ]  681183       0       0  681183 / 1000000    14.1s h2
[ ]  685763       0       0  685763 / 1000000    14.2s h2
[ ]  690210       0       0  690210 / 1000000    14.3s h2
[ ]  694250       0       0  694250 / 1000000    14.4s h2
[ ]  698132       0       0  698132 / 1000000    14.5s h2
[ ]  702086       0       0  702086 / 1000000    14.6s h2
[ ]  706900       0       0  706900 / 1000000    14.7s h2
[ ]  711717       0       0  711717 / 1000000    14.8s h2
[ ]  716492       0       0  716492 / 1000000    14.9s h2
[ ]  721320       0       0  721320 / 1000000    15.0s h2
[ ]  725909       0       0  725909 / 1000000    15.1s h2
[ ]  730363       0       0  730363 / 1000000    15.2s h2
[ ]  734746       0       0  734746 / 1000000    15.3s h2
[ ]  738687       0       0  738687 / 1000000    15.4s h2
[ ]  742813       0       0  742813 / 1000000    15.5s h2
[ ]  747189       0       0  747189 / 1000000    15.6s h2
[ ]  751682       0       0  751682 / 1000000    15.7s h2
[ ]  756021       0       0  756021 / 1000000    15.8s h2
[ ]  760561       0       0  760561 / 1000000    15.9s h2
[ ]  765217       0       0  765217 / 1000000    16.0s h2
[ ]  769618       0       0  769618 / 1000000    16.1s h2
[ ]  774137       0       0  774137 / 1000000    16.2s h2
[ ]  778433       0       0  778433 / 1000000    16.3s h2
[ ]  783129       0       0  783129 / 1000000    16.4s h2
[ ]  787811       0       0  787811 / 1000000    16.5s h2
[ ]  792386       0       0  792386 / 1000000    16.6s h2
[ ]  796867       0       0  796867 / 1000000    16.7s h2
[ ]  801571       0       0  801571 / 1000000    16.8s h2
[ ]  806375       0       0  806375 / 1000000    16.9s h2
[ ]  811162       0       0  811162 / 1000000    17.0s h2
[ ]  815993       0       0  815993 / 1000000    17.1s h2
[ ]  820630       0       0  820630 / 1000000    17.2s h2
[ ]  825390       0       0  825390 / 1000000    17.3s h2
[ ]  830109       0       0  830109 / 1000000    17.4s h2
[ ]  834715       0       0  834715 / 1000000    17.5s h2
[ ]  838881       0       0  838881 / 1000000    17.6s h2
[ ]  842975       0       0  842975 / 1000000    17.7s h2
[ ]  847491       0       0  847491 / 1000000    17.8s h2
[ ]  851901       0       0  851901 / 1000000    17.9s h2
[ ]  856092       0       0  856092 / 1000000    18.0s h2
[ ]  860204       0       0  860204 / 1000000    18.1s h2
[ ]  864401       0       0  864401 / 1000000    18.2s h2
[ ]  868022       0       0  868022 / 1000000    18.3s h2
[ ]  871981       0       0  871981 / 1000000    18.4s h2 (collecting)
[ ]  875688       0       0  875688 / 1000000    18.5s h2
[ ]  879672       0       0  879672 / 1000000    18.6s h2
[ ]  883978       0       0  883978 / 1000000    18.7s h2
[ ]  888591       0       0  888591 / 1000000    18.8s h2
[ ]  893121       0       0  893121 / 1000000    18.9s h2
[ ]  897467       0       0  897467 / 1000000    19.0s h2
[ ]  902012       0       0  902012 / 1000000    19.1s h2
[ ]  906612       0       0  906612 / 1000000    19.2s h2
[ ]  911281       0       0  911281 / 1000000    19.3s h2
[ ]  915991       0       0  915991 / 1000000    19.4s h2
[ ]  920813       0       0  920813 / 1000000    19.5s h2
[ ]  925552       0       0  925552 / 1000000    19.6s h2
[ ]  930306       0       0  930306 / 1000000    19.7s h2
[ ]  935036       0       0  935036 / 1000000    19.8s h2
[ ]  939692       0       0  939692 / 1000000    19.9s h2
[ ]  944348       0       0  944348 / 1000000    20.0s h2
[ ]  948295       0       0  948295 / 1000000    20.1s h2
[ ]  952718       0       0  952718 / 1000000    20.2s h2 (collecting)
[ ]  956819       0       0  956819 / 1000000    20.3s h2
[ ]  961209       0       0  961209 / 1000000    20.4s h2
[ ]  965512       0       0  965512 / 1000000    20.5s h2
[ ]  969210       0       0  969210 / 1000000    20.6s h2
[ ]  973504       0       0  973504 / 1000000    20.7s h2
[ ]  977580       0       0  977580 / 1000000    20.8s h2
[ ]  981998       0       0  981998 / 1000000    20.9s h2
[ ]  986587       0       0  986587 / 1000000    21.0s h2 (collecting)
[ ]  991064       0       0  991064 / 1000000    21.1s h2
[ ]  995146       0       0  995146 / 1000000    21.2s h2
[ ]  999337       0       0  999337 / 1000000    21.3s h2
[✓] 1000000       0       0 1000000 / 1000000    21.3s h2
- 
[ ]       0       0       0       0 / 1000000     0.0s h3
[ ]    9244       0       0    9244 / 1000000     0.1s h3
[ ]   18749       0       0   18749 / 1000000     0.2s h3
[ ]   27413       0       0   27413 / 1000000     0.3s h3
[ ]   36449       0       0   36449 / 1000000     0.4s h3
[ ]   44943       0       0   44943 / 1000000     0.5s h3
[ ]   54213       0       0   54213 / 1000000     0.6s h3
[ ]   63486       0       0   63486 / 1000000     0.7s h3
[ ]   72650       0       0   72650 / 1000000     0.8s h3
[ ]   81930       0       0   81930 / 1000000     0.9s h3
[ ]   91078       0       0   91078 / 1000000     1.0s h3
[ ]   99944       0       0   99944 / 1000000     1.1s h3
[ ]  108942       0       0  108942 / 1000000     1.2s h3
[ ]  117868       0       0  117868 / 1000000     1.3s h3
[ ]  127034       0       0  127034 / 1000000     1.4s h3
[ ]  136133       0       0  136133 / 1000000     1.5s h3
[ ]  145301       0       0  145301 / 1000000     1.6s h3
[ ]  154454       0       0  154454 / 1000000     1.7s h3
[ ]  162021       0       0  162021 / 1000000     1.8s h3
[ ]  170805       0       0  170805 / 1000000     1.9s h3
[ ]  179249       0       0  179249 / 1000000     2.0s h3
[ ]  186995       0       0  186995 / 1000000     2.1s h3 (collecting)
[ ]  196084       0       0  196084 / 1000000     2.2s h3
[ ]  205120       0       0  205120 / 1000000     2.3s h3
[ ]  213053       0       0  213053 / 1000000     2.4s h3
[ ]  221115       0       0  221115 / 1000000     2.5s h3
[ ]  229261       0       0  229261 / 1000000     2.6s h3
[ ]  236888       0       0  236888 / 1000000     2.7s h3
[ ]  245015       0       0  245015 / 1000000     2.8s h3
[ ]  252940       0       0  252940 / 1000000     2.9s h3
[ ]  260326       0       0  260326 / 1000000     3.0s h3
[ ]  268481       0       0  268481 / 1000000     3.1s h3
[ ]  277682       0       0  277682 / 1000000     3.2s h3
[ ]  286823       0       0  286823 / 1000000     3.3s h3
[ ]  296120       0       0  296120 / 1000000     3.4s h3
[ ]  305307       0       0  305307 / 1000000     3.5s h3
[ ]  314081       0       0  314081 / 1000000     3.6s h3
[ ]  322982       0       0  322982 / 1000000     3.7s h3
[ ]  332114       0       0  332114 / 1000000     3.8s h3
[ ]  340227       0       0  340227 / 1000000     3.9s h3
[ ]  347066       0       0  347066 / 1000000     4.0s h3
[ ]  353551       0       0  353551 / 1000000     4.1s h3 (collecting)
[ ]  359787       0       0  359787 / 1000000     4.2s h3
[ ]  366828       0       0  366828 / 1000000     4.3s h3
[ ]  375214       0       0  375214 / 1000000     4.4s h3
[ ]  382628       0       0  382628 / 1000000     4.5s h3
[ ]  388309       0       0  388309 / 1000000     4.6s h3
[ ]  394722       0       0  394722 / 1000000     4.7s h3
[ ]  402870       0       0  402870 / 1000000     4.8s h3
[ ]  410668       0       0  410668 / 1000000     4.9s h3
[ ]  419438       0       0  419438 / 1000000     5.0s h3
[ ]  427280       0       0  427280 / 1000000     5.1s h3
[ ]  434070       0       0  434070 / 1000000     5.2s h3 (generating)
[ ]  441914       0       0  441914 / 1000000     5.3s h3
[ ]  449936       0       0  449936 / 1000000     5.4s h3
[ ]  457373       0       0  457373 / 1000000     5.5s h3
[ ]  464629       0       0  464629 / 1000000     5.6s h3
[ ]  471382       0       0  471382 / 1000000     5.7s h3
[ ]  479304       0       0  479304 / 1000000     5.8s h3
[ ]  487124       0       0  487124 / 1000000     5.9s h3
[ ]  494527       0       0  494527 / 1000000     6.0s h3
[ ]  502882       0       0  502882 / 1000000     6.1s h3 (collecting)
[ ]  510783       0       0  510783 / 1000000     6.2s h3
[ ]  519079       0       0  519079 / 1000000     6.3s h3 (   testing)
[ ]  526997       0       0  526997 / 1000000     6.4s h3
[ ]  536036       0       0  536036 / 1000000     6.5s h3
[ ]  545698       0       0  545698 / 1000000     6.6s h3
[ ]  554049       0       0  554049 / 1000000     6.7s h3
[ ]  562675       0       0  562675 / 1000000     6.8s h3
[ ]  569045       0       0  569045 / 1000000     6.9s h3
[ ]  577362       0       0  577362 / 1000000     7.0s h3
[ ]  586385       0       0  586385 / 1000000     7.1s h3
[ ]  595954       0       0  595954 / 1000000     7.2s h3
[ ]  604363       0       0  604363 / 1000000     7.3s h3
[ ]  613535       0       0  613535 / 1000000     7.4s h3
[ ]  622375       0       0  622375 / 1000000     7.5s h3
[ ]  630711       0       0  630711 / 1000000     7.6s h3
[ ]  638355       0       0  638355 / 1000000     7.7s h3
[ ]  646712       0       0  646712 / 1000000     7.8s h3
[ ]  654973       0       0  654973 / 1000000     7.9s h3
[ ]  662874       0       0  662874 / 1000000     8.0s h3
[ ]  670140       0       0  670140 / 1000000     8.1s h3
[ ]  678428       0       0  678428 / 1000000     8.2s h3
[ ]  685416       0       0  685416 / 1000000     8.3s h3
[ ]  693231       0       0  693231 / 1000000     8.4s h3
[ ]  700717       0       0  700717 / 1000000     8.5s h3
[ ]  708943       0       0  708943 / 1000000     8.6s h3
[ ]  715565       0       0  715565 / 1000000     8.7s h3
[ ]  723747       0       0  723747 / 1000000     8.8s h3
[ ]  732489       0       0  732489 / 1000000     8.9s h3
[ ]  741398       0       0  741398 / 1000000     9.0s h3
[ ]  750444       0       0  750444 / 1000000     9.1s h3
[ ]  759524       0       0  759524 / 1000000     9.2s h3
[ ]  767591       0       0  767591 / 1000000     9.3s h3
[ ]  775783       0       0  775783 / 1000000     9.4s h3
[ ]  784146       0       0  784146 / 1000000     9.5s h3 (collecting)
[ ]  792509       0       0  792509 / 1000000     9.6s h3
[ ]  800883       0       0  800883 / 1000000     9.7s h3 (collecting)
[ ]  808810       0       0  808810 / 1000000     9.8s h3
[ ]  817886       0       0  817886 / 1000000     9.9s h3
[ ]  827086       0       0  827086 / 1000000    10.0s h3
[ ]  836805       0       0  836805 / 1000000    10.1s h3
[ ]  846008       0       0  846008 / 1000000    10.2s h3
[ ]  855177       0       0  855177 / 1000000    10.3s h3 (collecting)
[ ]  864367       0       0  864367 / 1000000    10.4s h3
[ ]  873228       0       0  873228 / 1000000    10.5s h3
[ ]  879612       0       0  879612 / 1000000    10.6s h3
[ ]  888407       0       0  888407 / 1000000    10.7s h3
[ ]  896652       0       0  896652 / 1000000    10.8s h3
[ ]  905420       0       0  905420 / 1000000    10.9s h3
[ ]  913981       0       0  913981 / 1000000    11.0s h3
[ ]  922987       0       0  922987 / 1000000    11.1s h3
[ ]  931934       0       0  931934 / 1000000    11.2s h3
[ ]  941110       0       0  941110 / 1000000    11.3s h3
[ ]  950102       0       0  950102 / 1000000    11.4s h3
[ ]  956181       0       0  956181 / 1000000    11.5s h3 (   testing)
[ ]  965216       0       0  965216 / 1000000    11.6s h3
[ ]  974021       0       0  974021 / 1000000    11.7s h3
[ ]  983072       0       0  983072 / 1000000    11.8s h3
[ ]  991924       0       0  991924 / 1000000    11.9s h3 (collecting)
[✓] 1000000       0       0 1000000 / 1000000    12.0s h3
- 
[ ]       0       0       0       0 / 1000000     0.0s h4
[ ]    2260       0       0    2260 / 1000000     0.1s h4
[ ]    4436       0       0    4436 / 1000000     0.2s h4
[ ]    6784       0       0    6784 / 1000000     0.3s h4
[ ]    9007       0       0    9007 / 1000000     0.4s h4
[ ]   11292       0       0   11292 / 1000000     0.5s h4
[ ]   13687       0       0   13687 / 1000000     0.6s h4
[ ]   16086       0       0   16086 / 1000000     0.7s h4
[ ]   18464       0       0   18464 / 1000000     0.8s h4
[ ]   20751       0       0   20751 / 1000000     0.9s h4
[ ]   23018       0       0   23018 / 1000000     1.0s h4
[ ]   25327       0       0   25327 / 1000000     1.1s h4
[ ]   27611       0       0   27611 / 1000000     1.2s h4
[ ]   29900       0       0   29900 / 1000000     1.3s h4
[ ]   32293       0       0   32293 / 1000000     1.4s h4
[ ]   34694       0       0   34694 / 1000000     1.5s h4
[ ]   37004       0       0   37004 / 1000000     1.6s h4
[ ]   39325       0       0   39325 / 1000000     1.7s h4
[ ]   41665       0       0   41665 / 1000000     1.8s h4
[ ]   43899       0       0   43899 / 1000000     1.9s h4
[ ]   46179       0       0   46179 / 1000000     2.0s h4
[ ]   48489       0       0   48489 / 1000000     2.1s h4
[ ]   50891       0       0   50891 / 1000000     2.2s h4
[ ]   53252       0       0   53252 / 1000000     2.3s h4
[ ]   55656       0       0   55656 / 1000000     2.4s h4
[ ]   57959       0       0   57959 / 1000000     2.5s h4
[ ]   60305       0       0   60305 / 1000000     2.6s h4
[ ]   62512       0       0   62512 / 1000000     2.7s h4
[ ]   64784       0       0   64784 / 1000000     2.8s h4
[ ]   67157       0       0   67157 / 1000000     2.9s h4
[ ]   69557       0       0   69557 / 1000000     3.0s h4
[ ]   71787       0       0   71787 / 1000000     3.1s h4
[ ]   74049       0       0   74049 / 1000000     3.2s h4
[ ]   76373       0       0   76373 / 1000000     3.3s h4
[ ]   78658       0       0   78658 / 1000000     3.4s h4 (collecting)
[ ]   80961       0       0   80961 / 1000000     3.5s h4
[ ]   83212       0       0   83212 / 1000000     3.6s h4
[ ]   85502       0       0   85502 / 1000000     3.7s h4
[ ]   87912       0       0   87912 / 1000000     3.8s h4
[ ]   90152       0       0   90152 / 1000000     3.9s h4
[ ]   92328       0       0   92328 / 1000000     4.0s h4
[ ]   94480       0       0   94480 / 1000000     4.1s h4
[ ]   96495       0       0   96495 / 1000000     4.2s h4
[ ]   98302       0       0   98302 / 1000000     4.3s h4
[ ]  100114       0       0  100114 / 1000000     4.4s h4
[ ]  101921       0       0  101921 / 1000000     4.5s h4
[ ]  103679       0       0  103679 / 1000000     4.6s h4
[ ]  105267       0       0  105267 / 1000000     4.7s h4
[ ]  107090       0       0  107090 / 1000000     4.8s h4
[ ]  109456       0       0  109456 / 1000000     4.9s h4
[ ]  111893       0       0  111893 / 1000000     5.0s h4
[ ]  114296       0       0  114296 / 1000000     5.1s h4
[ ]  116645       0       0  116645 / 1000000     5.2s h4
[ ]  118699       0       0  118699 / 1000000     5.3s h4
[ ]  121020       0       0  121020 / 1000000     5.4s h4
[ ]  123422       0       0  123422 / 1000000     5.5s h4
[ ]  125612       0       0  125612 / 1000000     5.6s h4
[ ]  128045       0       0  128045 / 1000000     5.7s h4
[ ]  130565       0       0  130565 / 1000000     5.8s h4
[ ]  133024       0       0  133024 / 1000000     5.9s h4
[ ]  135357       0       0  135357 / 1000000     6.0s h4
[ ]  137803       0       0  137803 / 1000000     6.1s h4
[ ]  140117       0       0  140117 / 1000000     6.2s h4
[ ]  142403       0       0  142403 / 1000000     6.3s h4
[ ]  144591       0       0  144591 / 1000000     6.4s h4
[ ]  146753       0       0  146753 / 1000000     6.5s h4
[ ]  149081       0       0  149081 / 1000000     6.6s h4
[ ]  151444       0       0  151444 / 1000000     6.7s h4
[ ]  153470       0       0  153470 / 1000000     6.8s h4
[ ]  155756       0       0  155756 / 1000000     6.9s h4
[ ]  158189       0       0  158189 / 1000000     7.0s h4
[ ]  160082       0       0  160082 / 1000000     7.1s h4
[ ]  161829       0       0  161829 / 1000000     7.2s h4
[ ]  163933       0       0  163933 / 1000000     7.3s h4
[ ]  165987       0       0  165987 / 1000000     7.4s h4
[ ]  168270       0       0  168270 / 1000000     7.5s h4
[ ]  170496       0       0  170496 / 1000000     7.6s h4
[ ]  172680       0       0  172680 / 1000000     7.7s h4
[ ]  174948       0       0  174948 / 1000000     7.8s h4
[ ]  176808       0       0  176808 / 1000000     7.9s h4
[ ]  179050       0       0  179050 / 1000000     8.0s h4
[ ]  181354       0       0  181354 / 1000000     8.1s h4
[ ]  183411       0       0  183411 / 1000000     8.2s h4
[ ]  185571       0       0  185571 / 1000000     8.3s h4
[ ]  187595       0       0  187595 / 1000000     8.4s h4
[ ]  189700       0       0  189700 / 1000000     8.5s h4
[ ]  191973       0       0  191973 / 1000000     8.6s h4
[ ]  194358       0       0  194358 / 1000000     8.7s h4
[ ]  196784       0       0  196784 / 1000000     8.8s h4
[ ]  199049       0       0  199049 / 1000000     8.9s h4
[ ]  201355       0       0  201355 / 1000000     9.0s h4
[ ]  203264       0       0  203264 / 1000000     9.1s h4
[ ]  205173       0       0  205173 / 1000000     9.2s h4
[ ]  206966       0       0  206966 / 1000000     9.3s h4
[ ]  208944       0       0  208944 / 1000000     9.4s h4
[ ]  210483       0       0  210483 / 1000000     9.5s h4
[ ]  211850       0       0  211850 / 1000000     9.6s h4
[ ]  213579       0       0  213579 / 1000000     9.7s h4
[ ]  215668       0       0  215668 / 1000000     9.8s h4
[ ]  217474       0       0  217474 / 1000000     9.9s h4
[ ]  219374       0       0  219374 / 1000000    10.0s h4
[ ]  221345       0       0  221345 / 1000000    10.1s h4
[ ]  223461       0       0  223461 / 1000000    10.2s h4
[ ]  225418       0       0  225418 / 1000000    10.3s h4
[ ]  227440       0       0  227440 / 1000000    10.4s h4
[ ]  228904       0       0  228904 / 1000000    10.5s h4
[ ]  230792       0       0  230792 / 1000000    10.6s h4
[ ]  232725       0       0  232725 / 1000000    10.7s h4
[ ]  234501       0       0  234501 / 1000000    10.8s h4
[ ]  236179       0       0  236179 / 1000000    10.9s h4
[ ]  237944       0       0  237944 / 1000000    11.0s h4
[ ]  239778       0       0  239778 / 1000000    11.1s h4
[ ]  241969       0       0  241969 / 1000000    11.2s h4
[ ]  243750       0       0  243750 / 1000000    11.3s h4
[ ]  245788       0       0  245788 / 1000000    11.4s h4
[ ]  248144       0       0  248144 / 1000000    11.5s h4
[ ]  250601       0       0  250601 / 1000000    11.6s h4
[ ]  253097       0       0  253097 / 1000000    11.7s h4
[ ]  255472       0       0  255472 / 1000000    11.8s h4
[ ]  257918       0       0  257918 / 1000000    11.9s h4
[ ]  260160       0       0  260160 / 1000000    12.0s h4
[ ]  262467       0       0  262467 / 1000000    12.1s h4
[ ]  264948       0       0  264948 / 1000000    12.2s h4
[ ]  267064       0       0  267064 / 1000000    12.3s h4
[ ]  269336       0       0  269336 / 1000000    12.4s h4
[ ]  271794       0       0  271794 / 1000000    12.5s h4
[ ]  274326       0       0  274326 / 1000000    12.6s h4
[ ]  276635       0       0  276635 / 1000000    12.7s h4
[ ]  279292       0       0  279292 / 1000000    12.8s h4
[ ]  281851       0       0  281851 / 1000000    12.9s h4
[ ]  284420       0       0  284420 / 1000000    13.0s h4
[ ]  286896       0       0  286896 / 1000000    13.1s h4
[ ]  289071       0       0  289071 / 1000000    13.2s h4
[ ]  291666       0       0  291666 / 1000000    13.3s h4
[ ]  294139       0       0  294139 / 1000000    13.4s h4
[ ]  296704       0       0  296704 / 1000000    13.5s h4
[ ]  299230       0       0  299230 / 1000000    13.6s h4
[ ]  301739       0       0  301739 / 1000000    13.7s h4
[ ]  304279       0       0  304279 / 1000000    13.8s h4
[ ]  306889       0       0  306889 / 1000000    13.9s h4
[ ]  309147       0       0  309147 / 1000000    14.0s h4
[ ]  310912       0       0  310912 / 1000000    14.1s h4
[ ]  313414       0       0  313414 / 1000000    14.2s h4
[ ]  315957       0       0  315957 / 1000000    14.3s h4
[ ]  318473       0       0  318473 / 1000000    14.4s h4
[ ]  320942       0       0  320942 / 1000000    14.5s h4
[ ]  323220       0       0  323220 / 1000000    14.6s h4
[ ]  325607       0       0  325607 / 1000000    14.7s h4
[ ]  328025       0       0  328025 / 1000000    14.8s h4
[ ]  330605       0       0  330605 / 1000000    14.9s h4
[ ]  333160       0       0  333160 / 1000000    15.0s h4
[ ]  335782       0       0  335782 / 1000000    15.1s h4
[ ]  338349       0       0  338349 / 1000000    15.2s h4
[ ]  340857       0       0  340857 / 1000000    15.3s h4
[ ]  343418       0       0  343418 / 1000000    15.4s h4
[ ]  346012       0       0  346012 / 1000000    15.5s h4
[ ]  348506       0       0  348506 / 1000000    15.6s h4
[ ]  350951       0       0  350951 / 1000000    15.7s h4
[ ]  353366       0       0  353366 / 1000000    15.8s h4
[ ]  355587       0       0  355587 / 1000000    15.9s h4
[ ]  357911       0       0  357911 / 1000000    16.0s h4
[ ]  360312       0       0  360312 / 1000000    16.1s h4
[ ]  362637       0       0  362637 / 1000000    16.2s h4
[ ]  365007       0       0  365007 / 1000000    16.3s h4
[ ]  367320       0       0  367320 / 1000000    16.4s h4
[ ]  369672       0       0  369672 / 1000000    16.5s h4
[ ]  372113       0       0  372113 / 1000000    16.6s h4
[ ]  374426       0       0  374426 / 1000000    16.7s h4
[ ]  376775       0       0  376775 / 1000000    16.8s h4
[ ]  378903       0       0  378903 / 1000000    16.9s h4
[ ]  381259       0       0  381259 / 1000000    17.0s h4
[ ]  383541       0       0  383541 / 1000000    17.1s h4
[ ]  385584       0       0  385584 / 1000000    17.2s h4
[ ]  387623       0       0  387623 / 1000000    17.3s h4
[ ]  389537       0       0  389537 / 1000000    17.4s h4
[ ]  392043       0       0  392043 / 1000000    17.5s h4
[ ]  394273       0       0  394273 / 1000000    17.6s h4
[ ]  396795       0       0  396795 / 1000000    17.7s h4
[ ]  399078       0       0  399078 / 1000000    17.8s h4
[ ]  401552       0       0  401552 / 1000000    17.9s h4
[ ]  403759       0       0  403759 / 1000000    18.0s h4
[ ]  406031       0       0  406031 / 1000000    18.1s h4
[ ]  408303       0       0  408303 / 1000000    18.2s h4 (collecting)
[ ]  410737       0       0  410737 / 1000000    18.3s h4
[ ]  412951       0       0  412951 / 1000000    18.4s h4
[ ]  415294       0       0  415294 / 1000000    18.5s h4
[ ]  417642       0       0  417642 / 1000000    18.6s h4
[ ]  420076       0       0  420076 / 1000000    18.7s h4
[ ]  422510       0       0  422510 / 1000000    18.8s h4
[ ]  424897       0       0  424897 / 1000000    18.9s h4
[ ]  427137       0       0  427137 / 1000000    19.0s h4
[ ]  429541       0       0  429541 / 1000000    19.1s h4
[ ]  431598       0       0  431598 / 1000000    19.2s h4
[ ]  433882       0       0  433882 / 1000000    19.3s h4
[ ]  436184       0       0  436184 / 1000000    19.4s h4
[ ]  438475       0       0  438475 / 1000000    19.5s h4
[ ]  440750       0       0  440750 / 1000000    19.6s h4
[ ]  443039       0       0  443039 / 1000000    19.7s h4
[ ]  445329       0       0  445329 / 1000000    19.8s h4
[ ]  447589       0       0  447589 / 1000000    19.9s h4
[ ]  449667       0       0  449667 / 1000000    20.0s h4
[ ]  451678       0       0  451678 / 1000000    20.1s h4
[ ]  453972       0       0  453972 / 1000000    20.2s h4
[ ]  456385       0       0  456385 / 1000000    20.3s h4
[ ]  458773       0       0  458773 / 1000000    20.4s h4
[ ]  461173       0       0  461173 / 1000000    20.5s h4
[ ]  463626       0       0  463626 / 1000000    20.6s h4
[ ]  465821       0       0  465821 / 1000000    20.7s h4
[ ]  468124       0       0  468124 / 1000000    20.8s h4
[ ]  470384       0       0  470384 / 1000000    20.9s h4
[ ]  472602       0       0  472602 / 1000000    21.0s h4
[ ]  474649       0       0  474649 / 1000000    21.1s h4
[ ]  476849       0       0  476849 / 1000000    21.2s h4
[ ]  479091       0       0  479091 / 1000000    21.3s h4
[ ]  481276       0       0  481276 / 1000000    21.4s h4
[ ]  483244       0       0  483244 / 1000000    21.5s h4
[ ]  484972       0       0  484972 / 1000000    21.6s h4
[ ]  486798       0       0  486798 / 1000000    21.7s h4
[ ]  488918       0       0  488918 / 1000000    21.8s h4
[ ]  491200       0       0  491200 / 1000000    21.9s h4
[ ]  493299       0       0  493299 / 1000000    22.0s h4
[ ]  494858       0       0  494858 / 1000000    22.1s h4
[ ]  497112       0       0  497112 / 1000000    22.2s h4
[ ]  499282       0       0  499282 / 1000000    22.3s h4
[ ]  501508       0       0  501508 / 1000000    22.4s h4
[ ]  503739       0       0  503739 / 1000000    22.5s h4
[ ]  505981       0       0  505981 / 1000000    22.6s h4
[ ]  508410       0       0  508410 / 1000000    22.7s h4
[ ]  510672       0       0  510672 / 1000000    22.8s h4
[ ]  512939       0       0  512939 / 1000000    22.9s h4
[ ]  515226       0       0  515226 / 1000000    23.0s h4
[ ]  517629       0       0  517629 / 1000000    23.1s h4
[ ]  519983       0       0  519983 / 1000000    23.2s h4
[ ]  522245       0       0  522245 / 1000000    23.3s h4
[ ]  524474       0       0  524474 / 1000000    23.4s h4
[ ]  526210       0       0  526210 / 1000000    23.5s h4
[ ]  527828       0       0  527828 / 1000000    23.6s h4
[ ]  529566       0       0  529566 / 1000000    23.7s h4
[ ]  531401       0       0  531401 / 1000000    23.8s h4
[ ]  533027       0       0  533027 / 1000000    23.9s h4
[ ]  534816       0       0  534816 / 1000000    24.0s h4
[ ]  536964       0       0  536964 / 1000000    24.1s h4
[ ]  538715       0       0  538715 / 1000000    24.2s h4
[ ]  541067       0       0  541067 / 1000000    24.3s h4
[ ]  543297       0       0  543297 / 1000000    24.4s h4
[ ]  545527       0       0  545527 / 1000000    24.5s h4
[ ]  547637       0       0  547637 / 1000000    24.6s h4
[ ]  550187       0       0  550187 / 1000000    24.7s h4
[ ]  552736       0       0  552736 / 1000000    24.8s h4
[ ]  555252       0       0  555252 / 1000000    24.9s h4
[ ]  557817       0       0  557817 / 1000000    25.0s h4
[ ]  560247       0       0  560247 / 1000000    25.1s h4
[ ]  562790       0       0  562790 / 1000000    25.2s h4
[ ]  565357       0       0  565357 / 1000000    25.3s h4
[ ]  567746       0       0  567746 / 1000000    25.4s h4
[ ]  570289       0       0  570289 / 1000000    25.5s h4
[ ]  572789       0       0  572789 / 1000000    25.6s h4
[ ]  575240       0       0  575240 / 1000000    25.7s h4
[ ]  577719       0       0  577719 / 1000000    25.8s h4
[ ]  580098       0       0  580098 / 1000000    25.9s h4
[ ]  582424       0       0  582424 / 1000000    26.0s h4
[ ]  584808       0       0  584808 / 1000000    26.1s h4
[ ]  587117       0       0  587117 / 1000000    26.2s h4
[ ]  589347       0       0  589347 / 1000000    26.3s h4
[ ]  591655       0       0  591655 / 1000000    26.4s h4
[ ]  593995       0       0  593995 / 1000000    26.5s h4
[ ]  596249       0       0  596249 / 1000000    26.6s h4
[ ]  598455       0       0  598455 / 1000000    26.7s h4
[ ]  600765       0       0  600765 / 1000000    26.8s h4
[ ]  603112       0       0  603112 / 1000000    26.9s h4
[ ]  605507       0       0  605507 / 1000000    27.0s h4
[ ]  607900       0       0  607900 / 1000000    27.1s h4
[ ]  610267       0       0  610267 / 1000000    27.2s h4
[ ]  612667       0       0  612667 / 1000000    27.3s h4
[ ]  614967       0       0  614967 / 1000000    27.4s h4
[ ]  617324       0       0  617324 / 1000000    27.5s h4
[ ]  619639       0       0  619639 / 1000000    27.6s h4
[ ]  621971       0       0  621971 / 1000000    27.7s h4
[ ]  624354       0       0  624354 / 1000000    27.8s h4
[ ]  626742       0       0  626742 / 1000000    27.9s h4
[ ]  629195       0       0  629195 / 1000000    28.0s h4
[ ]  631585       0       0  631585 / 1000000    28.1s h4
[ ]  634006       0       0  634006 / 1000000    28.2s h4
[ ]  636332       0       0  636332 / 1000000    28.3s h4
[ ]  638714       0       0  638714 / 1000000    28.4s h4
[ ]  641125       0       0  641125 / 1000000    28.5s h4
[ ]  643534       0       0  643534 / 1000000    28.6s h4
[ ]  645947       0       0  645947 / 1000000    28.7s h4
[ ]  648350       0       0  648350 / 1000000    28.8s h4
[ ]  650763       0       0  650763 / 1000000    28.9s h4
[ ]  653036       0       0  653036 / 1000000    29.0s h4
[ ]  655403       0       0  655403 / 1000000    29.1s h4
[ ]  657766       0       0  657766 / 1000000    29.2s h4
[ ]  660080       0       0  660080 / 1000000    29.3s h4
[ ]  662441       0       0  662441 / 1000000    29.4s h4
[ ]  664792       0       0  664792 / 1000000    29.5s h4
[ ]  667056       0       0  667056 / 1000000    29.6s h4
[ ]  669365       0       0  669365 / 1000000    29.7s h4
[ ]  671747       0       0  671747 / 1000000    29.8s h4
[ ]  674112       0       0  674112 / 1000000    29.9s h4
[ ]  676428       0       0  676428 / 1000000    30.0s h4
[ ]  678678       0       0  678678 / 1000000    30.1s h4
[ ]  681049       0       0  681049 / 1000000    30.2s h4
[ ]  683399       0       0  683399 / 1000000    30.3s h4
[ ]  685547       0       0  685547 / 1000000    30.4s h4
[ ]  687766       0       0  687766 / 1000000    30.5s h4
[ ]  689931       0       0  689931 / 1000000    30.6s h4
[ ]  692146       0       0  692146 / 1000000    30.7s h4
[ ]  694387       0       0  694387 / 1000000    30.8s h4
[ ]  696645       0       0  696645 / 1000000    30.9s h4
[ ]  698899       0       0  698899 / 1000000    31.0s h4
[ ]  701229       0       0  701229 / 1000000    31.1s h4
[ ]  703617       0       0  703617 / 1000000    31.2s h4
[ ]  706014       0       0  706014 / 1000000    31.3s h4
[ ]  708337       0       0  708337 / 1000000    31.4s h4
[ ]  710648       0       0  710648 / 1000000    31.5s h4
[ ]  712590       0       0  712590 / 1000000    31.6s h4
[ ]  714905       0       0  714905 / 1000000    31.7s h4
[ ]  717291       0       0  717291 / 1000000    31.8s h4
[ ]  719754       0       0  719754 / 1000000    31.9s h4
[ ]  722133       0       0  722133 / 1000000    32.0s h4
[ ]  723983       0       0  723983 / 1000000    32.1s h4
[ ]  726041       0       0  726041 / 1000000    32.2s h4
[ ]  728248       0       0  728248 / 1000000    32.3s h4
[ ]  730360       0       0  730360 / 1000000    32.4s h4
[ ]  732616       0       0  732616 / 1000000    32.5s h4
[ ]  734899       0       0  734899 / 1000000    32.6s h4
[ ]  737198       0       0  737198 / 1000000    32.7s h4
[ ]  739320       0       0  739320 / 1000000    32.8s h4
[ ]  741500       0       0  741500 / 1000000    32.9s h4
[ ]  743660       0       0  743660 / 1000000    33.0s h4
[ ]  745805       0       0  745805 / 1000000    33.1s h4
[ ]  747718       0       0  747718 / 1000000    33.2s h4
[ ]  750106       0       0  750106 / 1000000    33.3s h4
[ ]  752515       0       0  752515 / 1000000    33.4s h4
[ ]  754774       0       0  754774 / 1000000    33.5s h4
[ ]  757020       0       0  757020 / 1000000    33.6s h4
[ ]  759160       0       0  759160 / 1000000    33.7s h4
[ ]  761296       0       0  761296 / 1000000    33.8s h4
[ ]  763590       0       0  763590 / 1000000    33.9s h4
[ ]  765982       0       0  765982 / 1000000    34.0s h4
[ ]  768230       0       0  768230 / 1000000    34.1s h4
[ ]  770485       0       0  770485 / 1000000    34.2s h4
[ ]  772750       0       0  772750 / 1000000    34.3s h4
[ ]  775145       0       0  775145 / 1000000    34.4s h4
[ ]  777490       0       0  777490 / 1000000    34.5s h4
[ ]  779694       0       0  779694 / 1000000    34.6s h4 (collecting)
[ ]  781928       0       0  781928 / 1000000    34.7s h4
[ ]  784159       0       0  784159 / 1000000    34.8s h4
[ ]  786321       0       0  786321 / 1000000    34.9s h4
[ ]  788308       0       0  788308 / 1000000    35.0s h4
[ ]  790677       0       0  790677 / 1000000    35.1s h4
[ ]  793012       0       0  793012 / 1000000    35.2s h4
[ ]  795409       0       0  795409 / 1000000    35.3s h4
[ ]  797727       0       0  797727 / 1000000    35.4s h4
[ ]  800108       0       0  800108 / 1000000    35.5s h4
[ ]  802428       0       0  802428 / 1000000    35.6s h4
[ ]  804797       0       0  804797 / 1000000    35.7s h4
[ ]  807092       0       0  807092 / 1000000    35.8s h4
[ ]  809398       0       0  809398 / 1000000    35.9s h4
[ ]  811734       0       0  811734 / 1000000    36.0s h4
[ ]  813957       0       0  813957 / 1000000    36.1s h4
[ ]  816135       0       0  816135 / 1000000    36.2s h4
[ ]  818513       0       0  818513 / 1000000    36.3s h4
[ ]  820536       0       0  820536 / 1000000    36.4s h4
[ ]  822542       0       0  822542 / 1000000    36.5s h4
[ ]  824806       0       0  824806 / 1000000    36.6s h4
[ ]  826981       0       0  826981 / 1000000    36.7s h4
[ ]  829179       0       0  829179 / 1000000    36.8s h4
[ ]  831471       0       0  831471 / 1000000    36.9s h4
[ ]  833810       0       0  833810 / 1000000    37.0s h4
[ ]  836021       0       0  836021 / 1000000    37.1s h4
[ ]  838252       0       0  838252 / 1000000    37.2s h4
[ ]  840550       0       0  840550 / 1000000    37.3s h4
[ ]  842689       0       0  842689 / 1000000    37.4s h4
[ ]  845006       0       0  845006 / 1000000    37.5s h4
[ ]  847199       0       0  847199 / 1000000    37.6s h4
[ ]  849360       0       0  849360 / 1000000    37.7s h4
[ ]  851519       0       0  851519 / 1000000    37.8s h4
[ ]  853704       0       0  853704 / 1000000    37.9s h4
[ ]  855922       0       0  855922 / 1000000    38.0s h4
[ ]  857927       0       0  857927 / 1000000    38.1s h4
[ ]  859619       0       0  859619 / 1000000    38.2s h4
[ ]  861881       0       0  861881 / 1000000    38.3s h4
[ ]  864285       0       0  864285 / 1000000    38.4s h4
[ ]  866668       0       0  866668 / 1000000    38.5s h4
[ ]  869041       0       0  869041 / 1000000    38.6s h4
[ ]  871409       0       0  871409 / 1000000    38.7s h4
[ ]  873758       0       0  873758 / 1000000    38.8s h4
[ ]  876115       0       0  876115 / 1000000    38.9s h4
[ ]  878398       0       0  878398 / 1000000    39.0s h4
[ ]  880419       0       0  880419 / 1000000    39.1s h4
[ ]  882261       0       0  882261 / 1000000    39.2s h4
[ ]  884262       0       0  884262 / 1000000    39.3s h4
[ ]  886228       0       0  886228 / 1000000    39.4s h4
[ ]  888329       0       0  888329 / 1000000    39.5s h4
[ ]  890146       0       0  890146 / 1000000    39.6s h4
[ ]  892307       0       0  892307 / 1000000    39.7s h4
[ ]  894619       0       0  894619 / 1000000    39.8s h4
[ ]  896965       0       0  896965 / 1000000    39.9s h4
[ ]  899256       0       0  899256 / 1000000    40.0s h4
[ ]  901530       0       0  901530 / 1000000    40.1s h4
[ ]  903941       0       0  903941 / 1000000    40.2s h4
[ ]  906435       0       0  906435 / 1000000    40.3s h4
[ ]  908819       0       0  908819 / 1000000    40.4s h4
[ ]  911265       0       0  911265 / 1000000    40.5s h4
[ ]  913715       0       0  913715 / 1000000    40.6s h4
[ ]  916079       0       0  916079 / 1000000    40.7s h4
[ ]  918418       0       0  918418 / 1000000    40.8s h4
[ ]  920809       0       0  920809 / 1000000    40.9s h4
[ ]  923251       0       0  923251 / 1000000    41.0s h4
[ ]  925695       0       0  925695 / 1000000    41.1s h4
[ ]  928043       0       0  928043 / 1000000    41.2s h4
[ ]  930423       0       0  930423 / 1000000    41.3s h4
[ ]  932807       0       0  932807 / 1000000    41.4s h4
[ ]  935222       0       0  935222 / 1000000    41.5s h4
[ ]  937545       0       0  937545 / 1000000    41.6s h4
[ ]  939751       0       0  939751 / 1000000    41.7s h4
[ ]  941974       0       0  941974 / 1000000    41.8s h4
[ ]  944269       0       0  944269 / 1000000    41.9s h4
[ ]  946497       0       0  946497 / 1000000    42.0s h4
[ ]  948679       0       0  948679 / 1000000    42.1s h4
[ ]  950984       0       0  950984 / 1000000    42.2s h4
[ ]  953371       0       0  953371 / 1000000    42.3s h4
[ ]  955708       0       0  955708 / 1000000    42.4s h4
[ ]  957797       0       0  957797 / 1000000    42.5s h4
[ ]  960011       0       0  960011 / 1000000    42.6s h4
[ ]  962136       0       0  962136 / 1000000    42.7s h4
[ ]  964067       0       0  964067 / 1000000    42.8s h4
[ ]  966150       0       0  966150 / 1000000    42.9s h4
[ ]  968413       0       0  968413 / 1000000    43.0s h4
[ ]  970697       0       0  970697 / 1000000    43.1s h4
[ ]  972956       0       0  972956 / 1000000    43.2s h4
[ ]  975199       0       0  975199 / 1000000    43.3s h4
[ ]  977401       0       0  977401 / 1000000    43.4s h4
[ ]  979608       0       0  979608 / 1000000    43.5s h4
[ ]  981800       0       0  981800 / 1000000    43.6s h4
[ ]  984153       0       0  984153 / 1000000    43.7s h4
[ ]  986502       0       0  986502 / 1000000    43.8s h4
[ ]  988880       0       0  988880 / 1000000    43.9s h4
[ ]  991202       0       0  991202 / 1000000    44.0s h4
[ ]  993559       0       0  993559 / 1000000    44.1s h4
[ ]  996000       0       0  996000 / 1000000    44.2s h4
[ ]  998371       0       0  998371 / 1000000    44.3s h4
[✓] 1000000       0       0 1000000 / 1000000    44.4s 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-04-11 03:41.57 ---> saved as "d656462d132bb7bc53ae75dd517d180839f44d897061b2b321131dd0d98ccf66"
Job succeeded
2026-04-11 03:42.13: Job succeeded