Build:
  1. 0
2026-01-13 04:05.01: New job: test fstar.2025.08.07 with dune.3.21.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29216/head (001b427da21d4d746e124eaaffab7b4134813f6d)
                              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/29216/head" && git reset --hard 001b427d
git fetch origin master
git merge --no-edit 1c361fac36225534ee877701522e296785f9a9db
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa
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.21.0 3.21.0
RUN opam reinstall dune.3.21.0; \
    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.21.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall fstar.2025.08.07; \
    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" != 'fstar.2025.08.07' && 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 fstar.2025.08.07) || true
RUN opam reinstall --with-test --verbose fstar.2025.08.07; \
    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" != 'fstar.2025.08.07' && 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-01-13 04:05.01: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa-dune.3.21.0-fstar.2025.08.07-001b427da21d4d746e124eaaffab7b4134813f6d"
2026-01-13 04:05.01: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa)
 (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.21.0 3.21.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune.3.21.0;\
             \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.21.0' && 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 fstar.2025.08.07;\
             \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\" != 'fstar.2025.08.07' && 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 fstar.2025.08.07) || true"))
 (run (shell  "opam reinstall --with-test --verbose fstar.2025.08.07;\
             \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\" != 'fstar.2025.08.07' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-01-13 04:05.01: Waiting for resource in pool OCluster
2026-01-13 18:33.24: Waiting for worker…
2026-01-13 18:37.30: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at 1c361fac36 Merge pull request #29210 from dinosaure/release-miou-v0.5.1
Merge made by the 'ort' strategy.
 packages/chrome-trace/chrome-trace.3.21.0/opam     | 41 ++++++++++++
 .../dune-action-plugin.3.21.0/opam                 | 54 ++++++++++++++++
 .../dune-build-info/dune-build-info.3.21.0/opam    | 47 ++++++++++++++
 .../dune-configurator.3.21.0/opam                  | 51 +++++++++++++++
 packages/dune-glob/dune-glob.3.21.0/opam           | 44 +++++++++++++
 .../dune-private-libs.3.21.0/opam                  | 52 +++++++++++++++
 packages/dune-rpc-lwt/dune-rpc-lwt.3.21.0/opam     | 43 +++++++++++++
 packages/dune-rpc/dune-rpc.3.21.0/opam             | 46 +++++++++++++
 packages/dune-site/dune-site.3.21.0/opam           | 39 +++++++++++
 packages/dune/dune.3.21.0/opam                     | 75 ++++++++++++++++++++++
 packages/dyn/dyn.3.21.0/opam                       | 42 ++++++++++++
 packages/fs-io/fs-io.3.21.0/opam                   | 41 ++++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.21.0/opam         | 45 +++++++++++++
 packages/ordering/ordering.3.21.0/opam             | 40 ++++++++++++
 packages/stdune/stdune.3.21.0/opam                 | 48 ++++++++++++++
 packages/top-closure/top-closure.3.21.0/opam       | 40 ++++++++++++
 packages/xdg/xdg.3.21.0/opam                       | 41 ++++++++++++
 17 files changed, 789 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.21.0/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.21.0/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.21.0/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.21.0/opam
 create mode 100644 packages/dune-glob/dune-glob.3.21.0/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.21.0/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.21.0/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.21.0/opam
 create mode 100644 packages/dune-site/dune-site.3.21.0/opam
 create mode 100644 packages/dune/dune.3.21.0/opam
 create mode 100644 packages/dyn/dyn.3.21.0/opam
 create mode 100644 packages/fs-io/fs-io.3.21.0/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.21.0/opam
 create mode 100644 packages/ordering/ordering.3.21.0/opam
 create mode 100644 packages/stdune/stdune.3.21.0/opam
 create mode 100644 packages/top-closure/top-closure.3.21.0/opam
 create mode 100644 packages/xdg/xdg.3.21.0/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa)
2026-01-13 18:37.42 ---> using "2ecda48447fc68e8dcd256d2898af0a11126a077e05d747a0dcdff2845100de1" 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-01-13 18:37.42 ---> using "79eb1218297339daa5e94be48ad16ae73f417b872defa106efeff5b5f3323e6e" 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
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=71 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-01-13 18:37.42 ---> using "bf81485066c79fc9faf7a51b95869ba9d998fe2bf3de5ff7f59b253fc915122f" 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                 255
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, 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.2
2026-01-13 18:37.42 ---> using "f7c0c02658daf7a6d6c7671a8028e0e553264100bd569724894645b7844f6d7f" 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-01-13 18:37.42 ---> using "9b3e592c65565b9b3dc8b88c605e54ddba818eb105df981d794040a64c2f9916" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-01-13 18:37.43 ---> using "09c39d7126e88ed573ca8f78acbffb48c0088baecebf7a9155a91c3290ace20b" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-13 18:37.43 ---> using "1f9ebb837e22c3f42b1c3f6e7178a2aa2fcb8206685e62bba70fde550083c584" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- 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 trixie/main amd64 Packages [9670 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [95.5 kB]
- Fetched 9997 kB in 1s (11.2 MB/s)
- Reading package lists...
- 
2026-01-13 18:37.43 ---> using "bc5a313c83583d746179a868806b410c236b5a3d4895b7d8bc464eed6cfe706e" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune.3.21.0 3.21.0"))
dune is now pinned to version 3.21.0
2026-01-13 18:37.43 ---> using "448b2b0e77526967dc1d84c9cd1fd4fdf010f08d862d127b94c63a52bbc324d1" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune.3.21.0;\
                        \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.21.0' && 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.21.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install dune 3.21.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.21.0  (cached)
-> installed dune.3.21.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-13 18:37.43 ---> using "5acb627376dc8b6ecaceedd8635589b9dfb44ea06abcf3fc03092c3e94ea4126" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall fstar.2025.08.07;\
                        \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\" != 'fstar.2025.08.07' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
fstar.2025.08.07 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 32 packages
  - install base-bytes          base       [required by process]
  - install batteries           3.10.0     [required by fstar]
  - install camlp-streams       5.0.1      [required by batteries]
  - install conf-gmp            5          [required by zarith]
  - install conf-pkg-config     4          [required by zarith]
  - install cppo                1.8.0      [required by ppx_deriving]
  - install fstar               2025.08.07
  - install gen                 1.1        [required by sedlex]
  - install memtrace            0.2.3      [required by fstar]
  - install menhir              20250912   [required by fstar]
  - install menhirCST           20250912   [required by menhir]
  - install menhirLib           20250912   [required by fstar]
  - install menhirSdk           20250912   [required by menhir]
  - install mtime               2.1.0      [required by fstar]
  - install num                 1.6        [required by batteries]
  - install ocaml-compiler-libs v0.12.4    [required by ppxlib]
  - install ocamlbuild          0.16.1     [required by mtime, process]
  - install ocamlfind           1.9.8      [required by process, mtime, batteries, etc.]
  - install pprint              20230830   [required by fstar]
  - install ppx_derivers        1.2.1      [required by ppx_deriving]
  - install ppx_deriving        6.1.1      [required by fstar]
  - install ppx_deriving_yojson 3.10.0     [required by fstar]
  - install ppxlib              0.37.0     [required by fstar]
  - install process             0.2.1      [required by fstar]
  - install sedlex              3.7        [required by fstar]
  - install seq                 base       [required by gen]
  - install sexplib0            v0.17.0    [required by ppxlib]
  - install stdint              0.7.2      [required by fstar]
  - install stdlib-shims        0.3.0      [required by ppxlib]
  - install topkg               1.1.1      [required by mtime]
  - install yojson              3.0.0      [required by fstar]
  - install zarith              1.14       [required by fstar]

The following system packages will first need to be installed:
    libgmp-dev pkg-config

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
  2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libgmp-dev" "pkg-config"
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20622 files and directories currently installed.)
- Preparing to unpack .../0-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../1-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../2-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../3-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../4-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../5-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved batteries.3.10.0  (cached)
-> retrieved camlp-streams.5.0.1  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved cppo.1.8.0  (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> installed camlp-streams.5.0.1
-> retrieved fstar.2025.08.07  (cached)
-> installed cppo.1.8.0
-> retrieved gen.1.1  (cached)
-> retrieved memtrace.0.2.3  (cached)
-> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912  (cached)
-> installed memtrace.0.2.3
-> retrieved mtime.2.1.0  (cached)
-> installed menhirCST.20250912
-> retrieved num.1.6  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved pprint.20230830  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving.6.1.1  (cached)
-> retrieved ppx_deriving_yojson.3.10.0  (cached)
-> installed menhirSdk.20250912
-> retrieved ppxlib.0.37.0  (cached)
-> installed ppx_derivers.1.2.1
-> retrieved process.0.2.1  (cached)
-> retrieved sedlex.3.7  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> installed menhirLib.20250912
-> installed pprint.20230830
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdint.0.7.2  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved yojson.3.0.0  (cached)
-> installed stdlib-shims.0.3.0
-> retrieved zarith.1.14  (cached)
-> installed ocaml-compiler-libs.v0.12.4
-> installed sexplib0.v0.17.0
-> installed gen.1.1
-> installed num.1.6
-> installed stdint.0.7.2
-> installed yojson.3.0.0
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed process.0.2.1
-> installed zarith.1.14
-> installed batteries.3.10.0
-> installed topkg.1.1.1
-> installed mtime.2.1.0
-> installed menhir.20250912
-> installed ppxlib.0.37.0
-> installed ppx_deriving.6.1.1
-> installed sedlex.3.7
-> installed ppx_deriving_yojson.3.10.0
-> installed fstar.2025.08.07
Done.

<><> fstar.2025.08.07 installed successfully ><><><><><><><><><><><><><><><><><>
=> F* requires specific versions of Z3 to work correctly, and will refuse to run
   if the version string does not match. You should have z3-4.8.5 and z3-4.13.3
   in your $PATH. For details, see
   https://github.com/FStarLang/FStar/blob/master/INSTALL.md#runtime-dependency-particular-version-of-z3.
# To update the current shell environment, run: eval $(opam env)
2026-01-13 18:42.09 ---> saved as "4ed26a4a82e180c01c0a8879fc8e694ca75d561075b2fd5e7c159a2012baf6d8"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test fstar.2025.08.07) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile fstar 2025.08.07

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved fstar.2025.08.07  (https://opam.ocaml.org/cache)
-> removed   fstar.2025.08.07
-> installed fstar.2025.08.07
Done.

<><> fstar.2025.08.07 installed successfully ><><><><><><><><><><><><><><><><><>
=> F* requires specific versions of Z3 to work correctly, and will refuse to run
   if the version string does not match. You should have z3-4.8.5 and z3-4.13.3
   in your $PATH. For details, see
   https://github.com/FStarLang/FStar/blob/master/INSTALL.md#runtime-dependency-particular-version-of-z3.
# To update the current shell environment, run: eval $(opam env)
2026-01-13 18:47.28 ---> saved as "82685b11a98957f9dd9e5cfb28d740826ac02a494595648989134a3c3885c4fb"

/home/opam: (run (shell  "opam reinstall --with-test --verbose fstar.2025.08.07;\
                        \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\" != 'fstar.2025.08.07' && 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 fstar 2025.08.07

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [fstar.2025.08.07: extract]
-> retrieved fstar.2025.08.07  (cached)
Processing  2/4: [fstar: make 255]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "make" "-j" "255" "ADMIT=1" (CWD=/home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07)
-   STAGE 0          
-    DUNE BUILD      
-    INSTALL LIB SRC  
- (cd _build/.sandbox/78c76d38d5e1f0558a58c4998a2ff617/default && /home/opam/.opam/4.14/bin/menhir fstar-guts/FStarC_Parser_Parse.mly --base fstar-guts/FStarC_Parser_Parse --infer-write-query fstar-guts/FStarC_Parser_Parse__mock.ml.mock)
- File "fstar-guts/FStarC_Parser_Parse.mly", line 129, characters 60-70:
- Warning: the token LBRACK_BAR is unused.
- File "fstar-guts/FStarC_Parser_Parse.mly", line 325, characters 0-15:
- Warning: symbol decoratableDecl is unreachable from any of the start symbol(s).
- File "fstar-guts/FStarC_Parser_Parse.mly", line 308, characters 0-16:
- Warning: symbol noDecorationDecl is unreachable from any of the start symbol(s).
- (cd _build/.sandbox/9d8b8c8f641dab327b6ed24270fc9673/default && /home/opam/.opam/4.14/bin/menhir fstar-guts/FStarC_Parser_Parse.mly --base fstar-guts/FStarC_Parser_Parse --infer-read-reply fstar-guts/FStarC_Parser_Parse__mock.mli.inferred)
- Warning: 20 states have shift/reduce conflicts.
- Warning: 301 shift/reduce conflicts were arbitrarily resolved.
- Warning: 232 end-of-stream conflicts were arbitrarily resolved.
-    DUNE INSTALL    
-    DUNE CLEAN      
-   EXTRACT          STAGE 1 FSTARC-BARE
-    DEPEND          /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src
-    LAXCHECK        Prims.fst
-    LAXCHECK        FStar.NormSteps.fsti
-    LAXCHECK        FStar.Pervasives.Native.fst
-    LAXCHECK        FStar.Attributes.fsti
-    LAXCHECK        FStar.Pervasives.fsti
-    LAXCHECK        FStar.Pervasives.fst
-    LAXCHECK        FStar.Prelude.fsti
-    LAXCHECK        FStarC.Effect.fsti
-    LAXCHECK        FStar.Classical.Sugar.fsti
-    LAXCHECK        FStar.Ghost.fsti
-    LAXCHECK        FStar.Classical.fsti
-    LAXCHECK        FStar.Squash.fsti
-    LAXCHECK        FStar.Sealed.fsti
-    LAXCHECK        FStar.Float.fsti
-    LAXCHECK        FStar.Mul.fst
-    LAXCHECK        FStar.Monotonic.Pure.fst
-    LAXCHECK        FStar.ImmutableArray.Base.fsti
-    LAXCHECK        FStarC.Array.fsti
-    LAXCHECK        FStarC.VConfig.fsti
-    LAXCHECK        FStar.Exn.fst
-    LAXCHECK        FStar.Set.fsti
-    LAXCHECK        FStar.Preorder.fst
-    LAXCHECK        FStarC.Errors.Codes.fsti
-    LAXCHECK        FStarC.Sealed.fsti
-    LAXCHECK        FStarC.NormSteps.fst
-    LAXCHECK        FStar.Order.fst
-    LAXCHECK        FStarC.Reflection.V2.Interpreter.fsti
-    LAXCHECK        FStarC.Reflection.V1.Interpreter.fsti
-    LAXCHECK        FStar.Math.Lemmas.fsti
-    LAXCHECK        FStar.Range.fsti
-    LAXCHECK        FStarC.Sealed.fst
-    LAXCHECK        FStar.Monotonic.Witnessed.fsti
-    LAXCHECK        FStarC.Option.fsti
-    LAXCHECK        FStarC.List.fsti
-    LAXCHECK        FStarC.PSMap.fsti
-    LAXCHECK        FStarC.Json.fsti
-    LAXCHECK        FStarC.Find.fsti
-    LAXCHECK        FStarC.SMap.fsti
-    LAXCHECK        FStarC.Filepath.fsti
-    LAXCHECK        FStarC.Order.fsti
-    LAXCHECK        FStarC.Stats.fsti
-    LAXCHECK        FStarC.Timing.fsti
-    LAXCHECK        FStarC.Debug.fsti
-    LAXCHECK        FStarC.Options.Ext.fsti
-    LAXCHECK        FStarC.GenSym.fsti
-    LAXCHECK        FStarC.Thunk.fsti
-    LAXCHECK        FStarC.Hash.fsti
-    LAXCHECK        FStarC.Unionfind.fsti
-    LAXCHECK        FStarC.Dyn.fsti
-    LAXCHECK        FStarC.Platform.Base.fsti
-    LAXCHECK        FStarC.Plugins.Base.fsti
-    LAXCHECK        FStarC.Profiling.fsti
-    LAXCHECK        FStarC.EditDist.fsti
-    LAXCHECK        FStarC.IMap.fsti
-    LAXCHECK        FStarC.PIMap.fsti
-    LAXCHECK        FStarC.Misc.fsti
-    LAXCHECK        FStarC.Int.Extra.fsti
-    LAXCHECK        FStarC.OCaml.fsti
-    LAXCHECK        FStarC.Hints.fsti
-    LAXCHECK        FStarC.Hooks.fsti
-    LAXCHECK        FStarC.Interactive.Ide.fsti
-    LAXCHECK        FStarC.Interactive.Legacy.fsti
-    LAXCHECK        FStarC.Interactive.Lsp.fsti
-    LAXCHECK        FStarC.Prettyprint.fsti
-    LAXCHECK        FStar.List.Tot.Base.fst
-    EXTRACT         FStarC.NormSteps.fst.checked.lax
-    LAXCHECK        FStar.IndefiniteDescription.fsti
-    LAXCHECK        FStarC.VConfig.fst
-    EXTRACT         FStarC.Sealed.fst.checked.lax
-    LAXCHECK        FStar.Stubs.Reflection.Types.fsti
-    LAXCHECK        FStarC.Option.fst
-    LAXCHECK        FStarC.GenSym.fst
-    LAXCHECK        FStarC.Thunk.fst
-    LAXCHECK        FStarC.Common.fsti
-    LAXCHECK        FStarC.Plugins.fsti
-    LAXCHECK        FStarC.Real.fsti
-    LAXCHECK        FStarC.Order.fst
-    LAXCHECK        FStarC.Format.fsti
-    LAXCHECK        FStar.StrongExcludedMiddle.fst
-    LAXCHECK        FStar.TSet.fsti
-    EXTRACT         FStarC.GenSym.fst.checked.lax
-    EXTRACT         FStarC.VConfig.fst.checked.lax
-    EXTRACT         FStarC.Option.fst.checked.lax
-    EXTRACT         FStarC.Thunk.fst.checked.lax
-    EXTRACT         FStarC.Order.fst.checked.lax
-    EXTRACT         FStar.Pervasives.fst.checked.lax
-    LAXCHECK        FStarC.Errors.Codes.fst
-    LAXCHECK        FStar.Monotonic.Heap.fsti
-    LAXCHECK        FStar.Seq.Base.fsti
-    LAXCHECK        FStar.List.Tot.Properties.fsti
-    LAXCHECK        FStar.BitVector.fsti
-    LAXCHECK        FStar.Heap.fst
-    LAXCHECK        FStar.List.Tot.fst
-    LAXCHECK        FStar.UInt.fsti
-    LAXCHECK        FStar.Seq.Base.fst
-    LAXCHECK        FStar.Seq.Properties.fsti
-    LAXCHECK        FStar.ST.fst
-    EXTRACT         FStarC.Errors.Codes.fst.checked.lax
-    LAXCHECK        FStar.All.fsti
- * Warning 271 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/stage0/out/lib/fstar/ulib/FStar.UInt.fsti(436,8-436,51):
-   - Pattern uses these theory symbols or terms that should not be in an SMT
-     pattern:
-       Prims.op_Subtraction
- 
-    LAXCHECK        FStar.UInt32.fsti
-    LAXCHECK        FStar.List.fst
-    EXTRACT         FStar.Seq.Base.fst.checked.lax
-    LAXCHECK        FStar.Char.fsti
-    LAXCHECK        FStar.Seq.Properties.fst
-    LAXCHECK        FStar.Pprint.fsti
-    LAXCHECK        FStarC.BaseTypes.fsti
-    LAXCHECK        FStarC.String.fsti
-    LAXCHECK        FStar.String.fsti
-    LAXCHECK        FStarC.Util.fsti
-    LAXCHECK        FStarC.Getopt.fsti
-    LAXCHECK        FStarC.Debug.fst
-    LAXCHECK        FStarC.EditDist.fst
-    LAXCHECK        FStar.Issue.fsti
-    LAXCHECK        FStar.Stubs.Errors.Msg.fsti
-    LAXCHECK        FStar.Stubs.Tactics.Common.fsti
-    EXTRACT         FStarC.EditDist.fst.checked.lax
-    EXTRACT         FStarC.Debug.fst.checked.lax
-    LAXCHECK        FStarC.StringBuffer.fsti
-    LAXCHECK        FStarC.Pprint.fsti
-    LAXCHECK        FStarC.Misc.fst
-    LAXCHECK        FStar.Stubs.Tactics.Types.fsti
-    LAXCHECK        FStarC.Common.fst
-    LAXCHECK        FStarC.Find.Z3.fsti
-    LAXCHECK        FStar.Stubs.Tactics.Result.fsti
-    EXTRACT         FStarC.Misc.fst.checked.lax
-    LAXCHECK        FStar.Tactics.Effect.fsti
-    EXTRACT         FStarC.Common.fst.checked.lax
-    LAXCHECK        FStar.Tactics.Typeclasses.fsti
-    LAXCHECK        FStarC.Class.Monad.fsti
-    LAXCHECK        FStarC.Class.Show.fsti
-    LAXCHECK        FStarC.Errors.Msg.fsti
-    LAXCHECK        FStarC.Class.Deq.fsti
-    LAXCHECK        FStarC.Class.Monoid.fsti
-    LAXCHECK        FStarC.Class.Tagged.fsti
-    LAXCHECK        FStarC.Class.Listlike.fsti
-    LAXCHECK        FStarC.Class.Tagged.fst
-    LAXCHECK        FStarC.Class.Show.fst
-    LAXCHECK        FStarC.Find.fst
-    LAXCHECK        FStarC.Class.Deq.fst
-    LAXCHECK        FStarC.Class.Ord.fsti
-    LAXCHECK        FStarC.Options.Ext.fst
-    LAXCHECK        FStarC.Options.fsti
-    LAXCHECK        FStarC.Class.PP.fsti
-    LAXCHECK        FStarC.Platform.fsti
-    LAXCHECK        FStarC.Time.fsti
-    LAXCHECK        FStarC.Path.fsti
-    LAXCHECK        FStarC.Errors.Msg.fst
-    LAXCHECK        FStarC.Class.Monoid.fst
-    LAXCHECK        FStarC.Class.Monad.fst
-    LAXCHECK        FStarC.Writer.fsti
-    LAXCHECK        FStarC.Class.Listlike.fst
-    EXTRACT         FStar.Seq.Properties.fst.checked.lax
-    EXTRACT         FStarC.Class.Tagged.fst.checked.lax
-    LAXCHECK        FStarC.Platform.fst
-    LAXCHECK        FStarC.OCaml.fst
-    LAXCHECK        FStarC.Path.fst
-    LAXCHECK        FStarC.Class.PP.fst
-    EXTRACT         FStarC.Class.Monoid.fst.checked.lax
-    LAXCHECK        FStarC.Class.Ord.fst
-    LAXCHECK        FStarC.Stats.fst
-    LAXCHECK        FStarC.Range.Type.fsti
-    LAXCHECK        FStarC.Class.Setlike.fsti
-    LAXCHECK        FStarC.CList.fsti
-    LAXCHECK        FStarC.Real.fst
-    LAXCHECK        FStarC.Class.Hashable.fsti
-    EXTRACT         FStarC.Errors.Msg.fst.checked.lax
-    EXTRACT         FStarC.Options.Ext.fst.checked.lax
-    LAXCHECK        FStarC.Writer.fst
-    EXTRACT         FStarC.Class.Show.fst.checked.lax
-    EXTRACT         FStarC.Class.Listlike.fst.checked.lax
-    EXTRACT         FStarC.Find.fst.checked.lax
-    EXTRACT         FStarC.Class.Deq.fst.checked.lax
-    EXTRACT         FStarC.Class.Monad.fst.checked.lax
-    LAXCHECK        FStarC.Options.fst
-    LAXCHECK        FStarC.Profiling.fst
-    LAXCHECK        FStarC.Find.Z3.fst
-    EXTRACT         FStarC.Platform.fst.checked.lax
-    EXTRACT         FStarC.Path.fst.checked.lax
-    EXTRACT         FStarC.OCaml.fst.checked.lax
-    LAXCHECK        FStarC.Range.Type.fst
-    LAXCHECK        FStarC.Range.Ops.fsti
-    LAXCHECK        FStarC.Class.HasRange.fsti
-    LAXCHECK        FStarC.CList.fst
-    LAXCHECK        FStarC.Class.Hashable.fst
-    EXTRACT         FStarC.Writer.fst.checked.lax
-    EXTRACT         FStarC.Real.fst.checked.lax
-    EXTRACT         FStarC.Class.PP.fst.checked.lax
-    EXTRACT         FStarC.Stats.fst.checked.lax
-    LAXCHECK        FStarC.Class.Setlike.fst
-    LAXCHECK        FStarC.FlatSet.fsti
-    LAXCHECK        FStarC.RBSet.fsti
-    EXTRACT         FStarC.Find.Z3.fst.checked.lax
-    EXTRACT         FStarC.Range.Type.fst.checked.lax
-    EXTRACT         FStarC.Profiling.fst.checked.lax
-    LAXCHECK        FStarC.Range.Ops.fst
-    LAXCHECK        FStarC.Range.fsti
-    LAXCHECK        FStarC.Ident.fsti
-    EXTRACT         FStarC.Class.Hashable.fst.checked.lax
-    EXTRACT         FStarC.CList.fst.checked.lax
-    EXTRACT         FStarC.Class.Ord.fst.checked.lax
-    LAXCHECK        FStarC.RBSet.fst
-    LAXCHECK        FStarC.FlatSet.fst
-    LAXCHECK        FStarC.Class.HasRange.fst
-    LAXCHECK        FStarC.Errors.fsti
-    LAXCHECK        FStarC.Ident.fst
-    LAXCHECK        FStarC.Parser.Const.Tuples.fsti
-    LAXCHECK        FStarC.Const.fsti
-    LAXCHECK        FStarC.Parser.Dep.fsti
-    LAXCHECK        FStarC.Interactive.CompletionTable.fsti
-    EXTRACT         FStarC.Class.Setlike.fst.checked.lax
-    EXTRACT         FStarC.Range.Ops.fst.checked.lax
-    EXTRACT         FStarC.FlatSet.fst.checked.lax
-    EXTRACT         FStarC.RBSet.fst.checked.lax
-    EXTRACT         FStarC.Class.HasRange.fst.checked.lax
-    LAXCHECK        FStarC.Parser.Const.Tuples.fst
-    LAXCHECK        FStarC.Interactive.CompletionTable.fst
-    LAXCHECK        FStarC.Const.fst
-    LAXCHECK        FStarC.Parser.Const.fst
-    LAXCHECK        FStarC.Syntax.Syntax.fsti
-    LAXCHECK        FStarC.Extraction.ML.Syntax.fsti
-    EXTRACT         FStarC.Ident.fst.checked.lax
-    LAXCHECK        FStarC.Errors.fst
-    LAXCHECK        FStarC.Plugins.fst
-    LAXCHECK        FStarC.Interactive.JsonHelper.fsti
-    LAXCHECK        FStarC.Dependencies.fsti
-    EXTRACT         FStarC.Parser.Const.Tuples.fst.checked.lax
-    EXTRACT         FStarC.Const.fst.checked.lax
- * Warning 337 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/basic/FStarC.Plugins.fst(85,16-85,17):
-   - The operator '@' has been resolved to FStar.List.Tot.append even though
-     FStar.List.Tot is not in scope. Please add an 'open FStar.List.Tot' to stop
-     relying on this deprecated, special treatment of '@'.
- 
- * Warning 337 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/basic/FStarC.Plugins.fst(86,16-86,17):
-   - The operator '@' has been resolved to FStar.List.Tot.append even though
-     FStar.List.Tot is not in scope. Please add an 'open FStar.List.Tot' to stop
-     relying on this deprecated, special treatment of '@'.
- 
- * Warning 337 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/basic/FStarC.Plugins.fst(87,16-87,17):
-   - The operator '@' has been resolved to FStar.List.Tot.append even though
-     FStar.List.Tot is not in scope. Please add an 'open FStar.List.Tot' to stop
-     relying on this deprecated, special treatment of '@'.
- 
- * Warning 337 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/basic/FStarC.Plugins.fst(88,16-88,17):
-   - The operator '@' has been resolved to FStar.List.Tot.append even though
-     FStar.List.Tot is not in scope. Please add an 'open FStar.List.Tot' to stop
-     relying on this deprecated, special treatment of '@'.
- 
-    LAXCHECK        FStarC.Dependencies.fst
-    EXTRACT         FStarC.Plugins.fst.checked.lax
-    EXTRACT         FStarC.Options.fst.checked.lax
-    EXTRACT         FStarC.Parser.Const.fst.checked.lax
-    LAXCHECK        FStarC.Extraction.ML.Syntax.fst
-    LAXCHECK        FStarC.Extraction.ML.RemoveUnusedParameters.fsti
-    LAXCHECK        FStarC.Extraction.ML.Code.fsti
-    LAXCHECK        FStarC.Extraction.ML.PrintFS.fsti
-    LAXCHECK        FStarC.Extraction.ML.PrintML.fsti
-    EXTRACT         FStarC.Interactive.CompletionTable.fst.checked.lax
-    EXTRACT         FStarC.Errors.fst.checked.lax
-    EXTRACT         FStarC.Dependencies.fst.checked.lax
-    LAXCHECK        FStarC.Extraction.ML.RemoveUnusedParameters.fst
-    LAXCHECK        FStarC.Extraction.ML.PrintFS.fst
-    EXTRACT         FStarC.Extraction.ML.Syntax.fst.checked.lax
-    EXTRACT         FStarC.Extraction.ML.RemoveUnusedParameters.fst.checked.lax
-    LAXCHECK        FStarC.Syntax.Syntax.fst
-    LAXCHECK        FStarC.Syntax.Unionfind.fsti
-    LAXCHECK        FStarC.Syntax.Subst.fsti
-    LAXCHECK        FStarC.Syntax.InstFV.fsti
-    LAXCHECK        FStarC.Syntax.Free.fsti
-    LAXCHECK        FStarC.Syntax.Print.Ugly.fsti
-    LAXCHECK        FStarC.Parser.AST.fsti
-    LAXCHECK        FStarC.Syntax.Formula.fsti
-    LAXCHECK        FStarC.Syntax.MutRecTy.fsti
-    LAXCHECK        FStarC.Syntax.VisitM.fsti
-    LAXCHECK        FStarC.Syntax.Visit.fsti
-    LAXCHECK        FStarC.Syntax.Embeddings.Base.fsti
-    LAXCHECK        FStarC.Class.Binders.fsti
-    LAXCHECK        FStarC.TypeChecker.Common.fsti
-    LAXCHECK        FStarC.SMTEncoding.Term.fsti
-    LAXCHECK        FStarC.Parser.Const.ExtractAs.fsti
-    LAXCHECK        FStarC.Reflection.V2.Constants.fst
-    LAXCHECK        FStarC.Reflection.V2.Data.fsti
-    LAXCHECK        FStarC.Reflection.V1.Constants.fst
-    LAXCHECK        FStarC.Tactics.Common.fsti
-    LAXCHECK        FStarC.Syntax.Hash.fsti
-    LAXCHECK        FStarC.Syntax.Compress.fsti
-    LAXCHECK        FStarC.Syntax.TermHashTable.fsti
-    LAXCHECK        FStarC.Reflection.V1.Data.fsti
-    LAXCHECK        FStarC.Syntax.Unionfind.fst
-    LAXCHECK        FStarC.Syntax.Subst.fst
-    LAXCHECK        FStarC.Syntax.InstFV.fst
-    LAXCHECK        FStarC.Syntax.Util.fsti
-    LAXCHECK        FStarC.Syntax.VisitM.fst
-    LAXCHECK        FStarC.Tactics.Common.fst
-    LAXCHECK        FStarC.Syntax.Visit.fst
-    LAXCHECK        FStarC.Syntax.Free.fst
-    LAXCHECK        FStarC.Syntax.Hash.fst
-    LAXCHECK        FStarC.Class.Binders.fst
-    LAXCHECK        FStarC.Defensive.fsti
-    EXTRACT         FStarC.Reflection.V1.Constants.fst.checked.lax
-    EXTRACT         FStarC.Reflection.V2.Constants.fst.checked.lax
-    EXTRACT         FStarC.Extraction.ML.PrintFS.fst.checked.lax
-    LAXCHECK        FStarC.Syntax.Embeddings.fsti
-    LAXCHECK        FStarC.Syntax.Embeddings.AppEmb.fsti
-    LAXCHECK        FStarC.Reflection.V1.Data.fst
-    LAXCHECK        FStarC.Reflection.V2.Data.fst
-    LAXCHECK        FStarC.SMTEncoding.Term.fst
-    LAXCHECK        FStarC.SMTEncoding.UnsatCore.fsti
-    LAXCHECK        FStarC.SMTEncoding.Pruning.fsti
-    EXTRACT         FStarC.Tactics.Common.fst.checked.lax
-    EXTRACT         FStarC.Syntax.Visit.fst.checked.lax
-    EXTRACT         FStarC.Syntax.InstFV.fst.checked.lax
-    EXTRACT         FStarC.Class.Binders.fst.checked.lax
-    LAXCHECK        FStarC.Syntax.Util.fst
-    LAXCHECK        FStarC.Syntax.Print.Ugly.fst
-    LAXCHECK        FStarC.Syntax.MutRecTy.fst
-    LAXCHECK        FStarC.Parser.Const.ExtractAs.fst
-    EXTRACT         FStarC.Syntax.Unionfind.fst.checked.lax
-    EXTRACT         FStarC.Syntax.Free.fst.checked.lax
-    LAXCHECK        FStarC.Parser.AST.fst
-    LAXCHECK        FStarC.Parser.ToDocument.fsti
-    LAXCHECK        FStarC.Parser.AST.Util.fsti
-    LAXCHECK        FStarC.Syntax.DsEnv.fsti
-    LAXCHECK        FStarC.Parser.AST.Diff.fsti
-    LAXCHECK        FStarC.SMTEncoding.UnsatCore.fst
-    LAXCHECK        FStarC.SMTEncoding.SolverState.fsti
-    LAXCHECK        FStarC.SMTEncoding.Pruning.fst
-    EXTRACT         FStarC.Syntax.Hash.fst.checked.lax
-    LAXCHECK        FStarC.Syntax.Embeddings.AppEmb.fst
-    EXTRACT         FStarC.Syntax.Subst.fst.checked.lax
-    EXTRACT         FStarC.Reflection.V1.Data.fst.checked.lax
-    EXTRACT         FStarC.Reflection.V2.Data.fst.checked.lax
-    EXTRACT         FStarC.Parser.Const.ExtractAs.fst.checked.lax
-    EXTRACT         FStarC.Syntax.MutRecTy.fst.checked.lax
-    LAXCHECK        FStarC.Parser.AST.Diff.fst
-    LAXCHECK        FStarC.Parser.ToDocument.fst
- * Warning 328 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/parser/FStarC.Parser.AST.fst(784,8-784,22):
-   - Global binding
-         'FStarC.Parser.AST.decl_to_string'
-     is recursive but not used in its body
- 
-    LAXCHECK        FStarC.Parser.AST.Util.fst
-    LAXCHECK        FStarC.Parser.ParseIt.fsti
-    EXTRACT         FStarC.SMTEncoding.UnsatCore.fst.checked.lax
-    LAXCHECK        FStarC.Syntax.DsEnv.fst
-    LAXCHECK        FStarC.Syntax.Resugar.fsti
-    LAXCHECK        FStarC.Syntax.Print.Pretty.fsti
-    LAXCHECK        FStarC.Syntax.Print.fsti
-    LAXCHECK        FStarC.ToSyntax.TickedVars.fsti
-    LAXCHECK        FStarC.ToSyntax.ToSyntax.fsti
-    LAXCHECK        FStarC.TypeChecker.Env.fsti
-    LAXCHECK        FStarC.ToSyntax.Interleave.fsti
-    EXTRACT         FStarC.Syntax.Embeddings.AppEmb.fst.checked.lax
-    EXTRACT         FStarC.Syntax.VisitM.fst.checked.lax
-    LAXCHECK        FStarC.SMTEncoding.Z3.fsti
-    EXTRACT         FStarC.Syntax.Print.Ugly.fst.checked.lax
-    LAXCHECK        FStarC.Parser.Driver.fsti
- * Warning 328 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/parser/FStarC.Parser.ToDocument.fst(733,8-733,14):
-   - Global binding
-         'FStarC.Parser.ToDocument.p_decl'
-     is recursive but not used in its body
- 
- * Warning 328 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/parser/FStarC.Parser.ToDocument.fst(754,4-754,13):
-   - Global binding
-         'FStarC.Parser.ToDocument.p_justSig'
-     is recursive but not used in its body
- 
- * Warning 328 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/parser/FStarC.Parser.ToDocument.fst(1093,4-1093,24):
-   - Global binding
-         'FStarC.Parser.ToDocument.p_disjunctivePattern'
-     is recursive but not used in its body
- 
- * Warning 328 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/parser/FStarC.Parser.ToDocument.fst(1728,4-1728,21):
-   - Global binding
-         'FStarC.Parser.ToDocument.p_maybeFocusArrow'
-     is recursive but not used in its body
- 
- * Warning 328 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/parser/FStarC.Parser.ToDocument.fst(1992,4-1992,12):
-   - Global binding
-         'FStarC.Parser.ToDocument.p_tmNoEq'
-     is recursive but not used in its body
- 
-    LAXCHECK        FStarC.ToSyntax.Interleave.fst
-    EXTRACT         FStarC.SMTEncoding.Pruning.fst.checked.lax
-    LAXCHECK        FStarC.ToSyntax.TickedVars.fst
-    EXTRACT         FStarC.Parser.AST.Util.fst.checked.lax
-    LAXCHECK        FStarC.Syntax.Resugar.fst
-    LAXCHECK        FStarC.Syntax.Print.Pretty.fst
-    LAXCHECK        FStarC.Syntax.Print.fst
-    LAXCHECK        FStarC.Syntax.Formula.fst
-    LAXCHECK        FStarC.Syntax.Embeddings.Base.fst
-    LAXCHECK        FStarC.Syntax.Embeddings.fst
-    LAXCHECK        FStarC.Defensive.fst
-    LAXCHECK        FStarC.TypeChecker.Common.fst
-    LAXCHECK        FStarC.Syntax.Compress.fst
-    EXTRACT         FStarC.Parser.AST.Diff.fst.checked.lax
-    EXTRACT         FStarC.Syntax.Syntax.fst.checked.lax
-    LAXCHECK        FStarC.ToSyntax.ToSyntax.fst
-    EXTRACT         FStarC.SMTEncoding.Term.fst.checked.lax
-    LAXCHECK        FStarC.Parser.Driver.fst
-    LAXCHECK        FStarC.Parser.Dep.fst
-    LAXCHECK        FStarC.Prettyprint.fst
-    EXTRACT         FStarC.Syntax.Util.fst.checked.lax
-    EXTRACT         FStarC.Parser.AST.fst.checked.lax
-    LAXCHECK        FStarC.SMTEncoding.Z3.fst
-    EXTRACT         FStarC.Syntax.Print.Pretty.fst.checked.lax
-    EXTRACT         FStarC.Defensive.fst.checked.lax
-    EXTRACT         FStarC.Syntax.Compress.fst.checked.lax
-    LAXCHECK        FStarC.TypeChecker.Env.fst
-    LAXCHECK        FStarC.SMTEncoding.SolverState.fst
-    LAXCHECK        FStarC.SMTEncoding.Util.fsti
-    LAXCHECK        FStarC.TypeChecker.TermEqAndSimplify.fsti
-    LAXCHECK        FStarC.TypeChecker.Err.fsti
-    LAXCHECK        FStarC.TypeChecker.PatternUtils.fsti
-    LAXCHECK        FStarC.TypeChecker.DeferredImplicits.fsti
-    LAXCHECK        FStarC.TypeChecker.Rel.fsti
-    LAXCHECK        FStarC.TypeChecker.Util.fsti
-    LAXCHECK        FStarC.Reflection.V2.Builtins.fsti
-    LAXCHECK        FStarC.Reflection.V2.Embeddings.fsti
-    LAXCHECK        FStarC.TypeChecker.Generalize.fsti
-    LAXCHECK        FStarC.TypeChecker.Positivity.fsti
-    LAXCHECK        FStarC.SMTEncoding.Solver.Cache.fsti
-    LAXCHECK        FStarC.SMTEncoding.Solver.fsti
-    LAXCHECK        FStarC.TypeChecker.Quals.fsti
-    LAXCHECK        FStarC.TypeChecker.Core.fsti
-    LAXCHECK        FStarC.TypeChecker.DMFF.fsti
-    LAXCHECK        FStarC.TypeChecker.TcEffect.fsti
-    LAXCHECK        FStarC.TypeChecker.Tc.fsti
-    LAXCHECK        FStarC.Extraction.ML.UEnv.fsti
-    LAXCHECK        FStarC.Tactics.Hooks.fsti
-    LAXCHECK        FStarC.Reflection.V1.Builtins.fsti
-    LAXCHECK        FStarC.Reflection.V1.Embeddings.fsti
-    LAXCHECK        FStarC.Interactive.JsonHelper.fst
-    EXTRACT         FStarC.Prettyprint.fst.checked.lax
-    EXTRACT         FStarC.Parser.Driver.fst.checked.lax
-    EXTRACT         FStarC.ToSyntax.Interleave.fst.checked.lax
-    EXTRACT         FStarC.ToSyntax.TickedVars.fst.checked.lax
-    EXTRACT         FStarC.Syntax.Embeddings.Base.fst.checked.lax
-    EXTRACT         FStarC.Syntax.Formula.fst.checked.lax
-    EXTRACT         FStarC.Parser.ToDocument.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Common.fst.checked.lax
-    EXTRACT         FStarC.Syntax.Print.fst.checked.lax
- * Warning 319 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/tosyntax/FStarC.ToSyntax.ToSyntax.fst(517,13-517,47):
-   - Effectful argument let _ = FStarC.Ident.string_of_id op_plus in
-     _ = "+" (FStarC.Effect.ALL) to erased function assert, consider let binding it
- 
- * Warning 319 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/tosyntax/FStarC.ToSyntax.ToSyntax.fst(535,19-535,56):
-   - Effectful argument let _ = FStarC.Ident.string_of_lid max_lid in
-     _ = "max" (FStarC.Effect.ALL) to erased function assert, consider let binding it
- 
-    EXTRACT         FStarC.Syntax.DsEnv.fst.checked.lax
-    LAXCHECK        FStarC.TypeChecker.PatternUtils.fst
-    LAXCHECK        FStarC.SMTEncoding.Solver.Cache.fst
-    LAXCHECK        FStarC.SMTEncoding.Util.fst
-    LAXCHECK        FStarC.SMTEncoding.ErrorReporting.fsti
-    LAXCHECK        FStarC.SMTEncoding.Env.fst
-    LAXCHECK        FStarC.TypeChecker.TermEqAndSimplify.fst
-    LAXCHECK        FStarC.TypeChecker.NBETerm.fsti
-    LAXCHECK        FStarC.TypeChecker.DeferredImplicits.fst
-    LAXCHECK        FStarC.Extraction.ML.Util.fsti
-    LAXCHECK        FStarC.Extraction.ML.UEnv.fst
-    LAXCHECK        FStarC.Extraction.ML.Term.fsti
-    LAXCHECK        FStarC.Extraction.ML.RegEmb.fsti
-    LAXCHECK        FStarC.Extraction.ML.Modul.fsti
-    LAXCHECK        FStarC.Extraction.Krml.fsti
-    LAXCHECK        FStarC.Reflection.V2.Embeddings.fst
-    EXTRACT         FStarC.Syntax.Resugar.fst.checked.lax
-    LAXCHECK        FStarC.Reflection.V1.Embeddings.fst
-    LAXCHECK        FStarC.TypeChecker.TcTerm.fsti
-    LAXCHECK        FStarC.TypeChecker.TcInductive.fsti
-    EXTRACT         FStarC.SMTEncoding.SolverState.fst.checked.lax
-    EXTRACT         FStarC.Interactive.JsonHelper.fst.checked.lax
-    EXTRACT         FStarC.Parser.Dep.fst.checked.lax
-    EXTRACT         FStarC.SMTEncoding.Z3.fst.checked.lax
-    LAXCHECK        FStarC.Tactics.Types.Reflection.fsti
-    EXTRACT         FStarC.Syntax.Embeddings.fst.checked.lax
-    LAXCHECK        FStarC.Extraction.ML.Util.fst
-    LAXCHECK        FStarC.Extraction.ML.Code.fst
-    LAXCHECK        FStarC.Extraction.Krml.fst
-    LAXCHECK        FStarC.SMTEncoding.ErrorReporting.fst
-    EXTRACT         FStarC.SMTEncoding.Util.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.PatternUtils.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.DeferredImplicits.fst.checked.lax
-    LAXCHECK        FStarC.TypeChecker.NBETerm.fst
-    LAXCHECK        FStarC.TypeChecker.Primops.Base.fsti
-    LAXCHECK        FStarC.MachineInts.fsti
-    LAXCHECK        FStarC.Reflection.V2.NBEEmbeddings.fsti
-    LAXCHECK        FStarC.Reflection.V1.NBEEmbeddings.fsti
-    EXTRACT         FStarC.TypeChecker.TermEqAndSimplify.fst.checked.lax
-    EXTRACT         FStarC.Extraction.ML.UEnv.fst.checked.lax
-    EXTRACT         FStarC.SMTEncoding.Env.fst.checked.lax
-    LAXCHECK        FStarC.SMTEncoding.EncodeTerm.fsti
-    LAXCHECK        FStarC.SMTEncoding.Encode.fsti
-    LAXCHECK        FStarC.CheckedFiles.fsti
-    EXTRACT         FStarC.SMTEncoding.Solver.Cache.fst.checked.lax
- * Warning 328 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/extraction/FStarC.Extraction.ML.Code.fst(785,12-785,17):
-   - Local binding 'p_sig' is recursive but not used in its body
- 
- * Warning 328 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/extraction/FStarC.Extraction.Krml.fst(335,8-335,19):
-   - Global binding
-         'FStarC.Extraction.Krml.decl_to_doc'
-     is recursive but not used in its body
- 
-    LAXCHECK        FStarC.Tactics.Types.Reflection.fst
- * Warning 328 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/extraction/FStarC.Extraction.Krml.fst(658,8-658,37):
-   - Global binding
-         'FStarC.Extraction.Krml.translate_type_without_decay''
-     is recursive but not used in its body
- 
- * Warning 328 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/extraction/FStarC.Extraction.Krml.fst(761,4-761,19):
-   - Global binding
-         'FStarC.Extraction.Krml.translate_type''
-     is recursive but not used in its body
- 
- * Warning 328 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/extraction/FStarC.Extraction.Krml.fst(778,4-778,19):
-   - Global binding
-         'FStarC.Extraction.Krml.translate_expr''
-     is recursive but not used in its body
- 
-    EXTRACT         FStarC.Extraction.ML.Util.fst.checked.lax
-    LAXCHECK        FStarC.MachineInts.fst
-    EXTRACT         FStarC.SMTEncoding.ErrorReporting.fst.checked.lax
-    LAXCHECK        FStarC.TypeChecker.Primops.Base.fst
-    LAXCHECK        FStarC.TypeChecker.Primops.Eq.fsti
-    LAXCHECK        FStarC.TypeChecker.Primops.Real.fsti
-    LAXCHECK        FStarC.TypeChecker.Primops.Range.fsti
-    LAXCHECK        FStarC.TypeChecker.Primops.Errors.Msg.fsti
-    LAXCHECK        FStarC.TypeChecker.Primops.MachineInts.fsti
-    LAXCHECK        FStarC.TypeChecker.Primops.Docs.fsti
-    LAXCHECK        FStarC.TypeChecker.Primops.Erased.fsti
-    LAXCHECK        FStarC.TypeChecker.Primops.Sealed.fsti
-    LAXCHECK        FStarC.TypeChecker.Primops.Array.fsti
-    LAXCHECK        FStarC.TypeChecker.Primops.Issue.fsti
-    LAXCHECK        FStarC.TypeChecker.Primops.fsti
-    LAXCHECK        FStarC.Tactics.V2.Primops.fsti
-    LAXCHECK        FStarC.Tactics.V1.Primops.fsti
-    LAXCHECK        FStarC.Reflection.V2.NBEEmbeddings.fst
-    LAXCHECK        FStarC.Reflection.V1.NBEEmbeddings.fst
-    EXTRACT         FStarC.Extraction.ML.Code.fst.checked.lax
-    LAXCHECK        FStarC.CheckedFiles.fst
-    LAXCHECK        FStarC.Universal.fsti
-    LAXCHECK        FStarC.SMTEncoding.Solver.fst
-    EXTRACT         FStarC.Reflection.V2.Embeddings.fst.checked.lax
-    EXTRACT         FStarC.Tactics.Types.Reflection.fst.checked.lax
-    LAXCHECK        FStarC.TypeChecker.Primops.Erased.fst
-    LAXCHECK        FStarC.TypeChecker.Primops.Errors.Msg.fst
-    LAXCHECK        FStarC.TypeChecker.Primops.Eq.fst
-    LAXCHECK        FStarC.TypeChecker.Primops.Range.fst
-    LAXCHECK        FStarC.TypeChecker.Primops.Docs.fst
-    EXTRACT         FStarC.MachineInts.fst.checked.lax
-    LAXCHECK        FStarC.TypeChecker.Primops.Issue.fst
-    LAXCHECK        FStarC.TypeChecker.Primops.Sealed.fst
-    LAXCHECK        FStarC.TypeChecker.Primops.Array.fst
-    LAXCHECK        FStarC.TypeChecker.Primops.Real.fst
-    LAXCHECK        FStarC.TypeChecker.Primops.MachineInts.fst
-    LAXCHECK        FStarC.TypeChecker.Primops.fst
-    LAXCHECK        FStarC.TypeChecker.Cfg.fsti
-    LAXCHECK        FStarC.Tactics.Types.fsti
-    EXTRACT         FStarC.Reflection.V1.Embeddings.fst.checked.lax
-    EXTRACT         FStarC.CheckedFiles.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Env.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.NBETerm.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Primops.Docs.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Primops.Eq.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Primops.Errors.Msg.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Primops.Sealed.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Primops.Issue.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Primops.Erased.fst.checked.lax
-    LAXCHECK        FStarC.Tactics.Types.fst
-    LAXCHECK        FStarC.Tactics.Printing.fsti
-    LAXCHECK        FStarC.Tactics.Result.fsti
-    LAXCHECK        FStarC.Tactics.Native.fsti
-    EXTRACT         FStarC.TypeChecker.Primops.Range.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Primops.Array.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Primops.Real.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Primops.MachineInts.fst.checked.lax
-    EXTRACT         FStarC.Reflection.V1.NBEEmbeddings.fst.checked.lax
-    LAXCHECK        FStarC.TypeChecker.Cfg.fst
-    LAXCHECK        FStarC.TypeChecker.Normalize.Unfolding.fsti
-    LAXCHECK        FStarC.TypeChecker.Normalize.fsti
-    LAXCHECK        FStarC.Reflection.V2.Interpreter.fst
-    LAXCHECK        FStarC.Reflection.V1.Interpreter.fst
-    EXTRACT         FStarC.Reflection.V2.NBEEmbeddings.fst.checked.lax
-    LAXCHECK        FStarC.Interactive.Ide.Types.fsti
-    EXTRACT         FStarC.TypeChecker.Primops.Base.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Primops.fst.checked.lax
-    EXTRACT         FStarC.ToSyntax.ToSyntax.fst.checked.lax
-    EXTRACT         FStarC.Extraction.Krml.fst.checked.lax
-    LAXCHECK        FStarC.Tactics.Printing.fst
-    LAXCHECK        FStarC.Tactics.Result.fst
-    LAXCHECK        FStarC.Tactics.Embedding.fsti
-    LAXCHECK        FStarC.Tactics.Monad.fsti
-    LAXCHECK        FStarC.TypeChecker.Normalize.Unfolding.fst
-    EXTRACT         FStarC.Tactics.Types.fst.checked.lax
-    LAXCHECK        FStarC.TypeChecker.Normalize.fst
-    LAXCHECK        FStarC.TypeChecker.Err.fst
-    LAXCHECK        FStarC.TypeChecker.Rel.fst
-    LAXCHECK        FStarC.TypeChecker.Util.fst
-    LAXCHECK        FStarC.Reflection.V2.Builtins.fst
-    LAXCHECK        FStarC.SMTEncoding.EncodeTerm.fst
-    LAXCHECK        FStarC.SMTEncoding.Encode.fst
-    LAXCHECK        FStarC.TypeChecker.Generalize.fst
-    LAXCHECK        FStarC.TypeChecker.Positivity.fst
-    LAXCHECK        FStarC.TypeChecker.TcTerm.fst
-    LAXCHECK        FStarC.TypeChecker.TcInductive.fst
-    LAXCHECK        FStarC.TypeChecker.NBE.fsti
-    LAXCHECK        FStarC.TypeChecker.Quals.fst
-    LAXCHECK        FStarC.TypeChecker.Core.fst
-    LAXCHECK        FStarC.TypeChecker.DMFF.fst
-    LAXCHECK        FStarC.TypeChecker.TcEffect.fst
-    LAXCHECK        FStarC.TypeChecker.Tc.fst
-    LAXCHECK        FStarC.Extraction.ML.Term.fst
-    LAXCHECK        FStarC.Extraction.ML.Modul.fst
-    LAXCHECK        FStarC.Reflection.V1.Builtins.fst
-    LAXCHECK        FStarC.Interactive.Legacy.fst
-    EXTRACT         FStarC.Tactics.Result.fst.checked.lax
-    EXTRACT         FStarC.SMTEncoding.Solver.fst.checked.lax
-    EXTRACT         FStarC.Tactics.Printing.fst.checked.lax
-    EXTRACT         FStarC.Reflection.V1.Interpreter.fst.checked.lax
- * Warning 337 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/typechecker/FStarC.TypeChecker.Err.fst(132,30-132,31):
-   - The operator '@' has been resolved to FStar.List.Tot.append even though
-     FStar.List.Tot is not in scope. Please add an 'open FStar.List.Tot' to stop
-     relying on this deprecated, special treatment of '@'.
- 
- * Warning 337 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/typechecker/FStarC.TypeChecker.Err.fst(141,29-141,30):
-   - The operator '@' has been resolved to FStar.List.Tot.append even though
-     FStar.List.Tot is not in scope. Please add an 'open FStar.List.Tot' to stop
-     relying on this deprecated, special treatment of '@'.
- 
-    LAXCHECK        FStarC.TypeChecker.NBE.fst
-    EXTRACT         FStarC.Reflection.V2.Interpreter.fst.checked.lax
-    LAXCHECK        FStarC.Tactics.Embedding.fst
-    LAXCHECK        FStarC.Tactics.Monad.fst
-    LAXCHECK        FStarC.Tactics.InterpFuns.fsti
-    LAXCHECK        FStarC.Tactics.CtrlRewrite.fsti
-    LAXCHECK        FStarC.Tactics.Interpreter.fsti
-    LAXCHECK        FStarC.Tactics.V2.Basic.fsti
-    LAXCHECK        FStarC.Tactics.V1.Basic.fsti
-    EXTRACT         FStarC.TypeChecker.Cfg.fst.checked.lax
-    LAXCHECK        FStarC.Interactive.Ide.Types.fst
-    LAXCHECK        FStarC.Interactive.QueryHelper.fsti
-    LAXCHECK        FStarC.Interactive.PushHelper.fsti
-    LAXCHECK        FStarC.Interactive.Incremental.fsti
-    EXTRACT         FStarC.TypeChecker.Normalize.Unfolding.fst.checked.lax
- * Warning 328 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/extraction/FStarC.Extraction.ML.Term.fst(713,8-713,31):
-   - Global binding
-         'FStarC.Extraction.ML.Term.translate_term_to_mlty''
-     is recursive but not used in its body
- 
- * Warning 328 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/extraction/FStarC.Extraction.ML.Term.fst(1346,4-1346,20):
-   - Global binding
-         'FStarC.Extraction.ML.Term.extract_lb_iface'
-     is recursive but not used in its body
- 
- * Warning 328 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/extraction/FStarC.Extraction.ML.Term.fst(1392,4-1392,19):
-   - Global binding
-         'FStarC.Extraction.ML.Term.term_as_mlexpr''
-     is recursive but not used in its body
- 
-    EXTRACT         FStarC.TypeChecker.Err.fst.checked.lax
- * Warning 319 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/typechecker/FStarC.TypeChecker.Generalize.fst(264,9-264,54):
-   - Effectful argument FStarC.List.for_all (fun _ ->
-           (let l, _, _ = _ in
-             Inr? l)
-           <:
-           Prims.bool)
-       lecs (FStarC.Effect.ALL) to erased function assert, consider let binding it
- 
-    EXTRACT         FStarC.TypeChecker.Quals.fst.checked.lax
-    EXTRACT         FStarC.Reflection.V2.Builtins.fst.checked.lax
-    EXTRACT         FStarC.Reflection.V1.Builtins.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Generalize.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Positivity.fst.checked.lax
-    LAXCHECK        FStarC.Tactics.CtrlRewrite.fst
-    LAXCHECK        FStarC.Tactics.Interpreter.fst
-    LAXCHECK        FStarC.Universal.fst
-    LAXCHECK        FStarC.Hooks.fst
-    LAXCHECK        FStarC.Main.fst
-    LAXCHECK        FStarC.Tactics.V1.Basic.fst
-    LAXCHECK        FStarC.Tactics.InterpFuns.fst
-    LAXCHECK        FStarC.Extraction.ML.RegEmb.fst
-    LAXCHECK        FStarC.Tactics.V1.Primops.fst
-    EXTRACT         FStarC.Interactive.Legacy.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.TcInductive.fst.checked.lax
-    LAXCHECK        FStarC.Tactics.V2.Basic.fst
-    LAXCHECK        FStarC.Tactics.Hooks.fst
-    LAXCHECK        FStarC.Tactics.V2.Primops.fst
-    EXTRACT         FStarC.Tactics.Monad.fst.checked.lax
-    EXTRACT         FStarC.Tactics.Embedding.fst.checked.lax
-    LAXCHECK        FStarC.Interactive.QueryHelper.fst
-    LAXCHECK        FStarC.Interactive.PushHelper.fst
-    LAXCHECK        FStarC.Interactive.Incremental.fst
-    LAXCHECK        FStarC.Interactive.Ide.fst
-    LAXCHECK        FStarC.Interactive.Lsp.fst
-    EXTRACT         FStarC.Extraction.ML.Modul.fst.checked.lax
-    EXTRACT         FStarC.Interactive.Ide.Types.fst.checked.lax
-    EXTRACT         FStarC.Extraction.ML.Term.fst.checked.lax
-    EXTRACT         FStarC.SMTEncoding.EncodeTerm.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Tc.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Core.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.DMFF.fst.checked.lax
-    EXTRACT         FStarC.Hooks.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.NBE.fst.checked.lax
-    EXTRACT         FStarC.Tactics.CtrlRewrite.fst.checked.lax
-    EXTRACT         FStarC.Tactics.Interpreter.fst.checked.lax
-    EXTRACT         FStarC.SMTEncoding.Encode.fst.checked.lax
-    EXTRACT         FStarC.Interactive.Lsp.fst.checked.lax
-    EXTRACT         FStarC.Extraction.ML.RegEmb.fst.checked.lax
-    EXTRACT         FStarC.Interactive.QueryHelper.fst.checked.lax
-    EXTRACT         FStarC.Universal.fst.checked.lax
- * Warning 319 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/interactive/FStarC.Interactive.Ide.fst(152,13-152,53):
-   - Effectful argument let _ =
-       let _ =
-         let _ =
-           let _ = !FStarC.Interactive.PushHelper.repl_stack in
-           FStarC.List.hd _
-         in
-         FStar.Pervasives.Native.snd _
-       in
-       FStar.Pervasives.Native.fst _
-     in
-     task = _ (FStarC.Effect.ALL) to erased function assert, consider let binding it
- 
-    EXTRACT         FStarC.Interactive.PushHelper.fst.checked.lax
-    EXTRACT         FStarC.Main.fst.checked.lax
-    EXTRACT         FStarC.Interactive.Incremental.fst.checked.lax
-    EXTRACT         FStarC.Tactics.V1.Primops.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.TcEffect.fst.checked.lax
-    EXTRACT         FStarC.Interactive.Ide.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Util.fst.checked.lax
-    EXTRACT         FStarC.Tactics.Hooks.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Normalize.fst.checked.lax
-    EXTRACT         FStarC.Tactics.V1.Basic.fst.checked.lax
-    EXTRACT         FStarC.Tactics.V2.Primops.fst.checked.lax
-    EXTRACT         FStarC.Tactics.InterpFuns.fst.checked.lax
-    EXTRACT         FStarC.Tactics.V2.Basic.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.TcTerm.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Rel.fst.checked.lax
-   BUILD            STAGE 1 FSTARC-BARE
- (cd _build/.sandbox/78c76d38d5e1f0558a58c4998a2ff617/default && /home/opam/.opam/4.14/bin/menhir fstar-guts/FStarC_Parser_Parse.mly --base fstar-guts/FStarC_Parser_Parse --infer-write-query fstar-guts/FStarC_Parser_Parse__mock.ml.mock)
- File "fstar-guts/FStarC_Parser_Parse.mly", line 129, characters 60-70:
- Warning: the token LBRACK_BAR is unused.
- File "fstar-guts/FStarC_Parser_Parse.mly", line 325, characters 0-15:
- Warning: symbol decoratableDecl is unreachable from any of the start symbol(s).
- File "fstar-guts/FStarC_Parser_Parse.mly", line 308, characters 0-16:
- Warning: symbol noDecorationDecl is unreachable from any of the start symbol(s).
- (cd _build/.sandbox/9d8b8c8f641dab327b6ed24270fc9673/default && /home/opam/.opam/4.14/bin/menhir fstar-guts/FStarC_Parser_Parse.mly --base fstar-guts/FStarC_Parser_Parse --infer-read-reply fstar-guts/FStarC_Parser_Parse__mock.mli.inferred)
- Warning: 20 states have shift/reduce conflicts.
- Warning: 301 shift/reduce conflicts were arbitrarily resolved.
- Warning: 232 end-of-stream conflicts were arbitrarily resolved.
-   EXTRACT          STAGE 1 PLUGINS
-    DEPEND          /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib
-    LAXCHECK        Prims.fst
-    LAXCHECK        FStar.NormSteps.fsti
-    LAXCHECK        FStar.Pervasives.Native.fst
-    LAXCHECK        FStar.Attributes.fsti
-    LAXCHECK        FStar.NormSteps.fst
-    EXTRACT         FStar.NormSteps.fst.checked.lax
-    LAXCHECK        FStar.Pervasives.fsti
-    LAXCHECK        FStar.Pervasives.fst
-    LAXCHECK        FStar.Prelude.fsti
-    LAXCHECK        FStar.Ghost.fsti
-    LAXCHECK        FStar.Squash.fsti
-    LAXCHECK        FStar.Classical.Sugar.fsti
-    LAXCHECK        FStar.Mul.fst
-    LAXCHECK        FStar.Classical.fsti
-    LAXCHECK        FStar.Preorder.fst
-    LAXCHECK        FStar.Sealed.fsti
-    LAXCHECK        FStar.Monotonic.Pure.fst
-    LAXCHECK        FStar.Float.fsti
-    LAXCHECK        FStar.Order.fst
-    LAXCHECK        FStar.Stubs.VConfig.fsti
-    LAXCHECK        FStar.Reflection.Const.fst
-    LAXCHECK        FStar.Stubs.TypeChecker.Core.fsti
-    LAXCHECK        FStar.FunctionalExtensionality.fsti
-    LAXCHECK        FStar.Set.fsti
-    LAXCHECK        FStar.PropositionalExtensionality.fst
-    LAXCHECK        FStar.Exn.fst
-    LAXCHECK        FStar.Tactics.Logic.Lemmas.fsti
-    LAXCHECK        FStar.Bijection.fsti
-    EXTRACT         FStar.Mul.fst.checked.lax
-    LAXCHECK        FStar.Math.Lib.fst
-    LAXCHECK        FStar.Math.Lemmas.fsti
-    LAXCHECK        FStar.Tactics.Canon.Lemmas.fsti
-    LAXCHECK        FStar.Range.fsti
-    LAXCHECK        FStar.Sealed.Inhabited.fst
-    EXTRACT         FStar.Preorder.fst.checked.lax
-    LAXCHECK        FStar.Monotonic.Witnessed.fsti
-    EXTRACT         FStar.PropositionalExtensionality.fst.checked.lax
-    EXTRACT         FStar.Monotonic.Pure.fst.checked.lax
-    LAXCHECK        FStar.Classical.Sugar.fst
-    LAXCHECK        FStar.List.Tot.Base.fst
-    LAXCHECK        FStar.Algebra.CommMonoid.Equiv.fst
-    EXTRACT         FStar.Order.fst.checked.lax
-    LAXCHECK        FStar.IndefiniteDescription.fsti
-    LAXCHECK        FStar.ErasedLogic.fst
-    EXTRACT         FStar.Reflection.Const.fst.checked.lax
-    LAXCHECK        FStar.Calc.fsti
-    LAXCHECK        FStar.Stubs.Reflection.Types.fsti
-    EXTRACT         FStar.Sealed.Inhabited.fst.checked.lax
-    LAXCHECK        FStar.Classical.fst
-    LAXCHECK        FStar.Bijection.fst
-    LAXCHECK        FStar.Tactics.Canon.Lemmas.fst
-    LAXCHECK        FStar.Monotonic.Witnessed.fst
-    EXTRACT         FStar.ErasedLogic.fst.checked.lax
-    LAXCHECK        FStar.IndefiniteDescription.fst
-    LAXCHECK        FStar.Squash.fst
-    LAXCHECK        FStar.StrongExcludedMiddle.fst
-    LAXCHECK        FStar.Tactics.Logic.Lemmas.fst
-    LAXCHECK        FStar.Stubs.Syntax.Syntax.fsti
-    LAXCHECK        FStar.Stubs.Tactics.Types.Reflection.fsti
-    LAXCHECK        FStar.Reflection.TermEq.Simple.fsti
-    LAXCHECK        FStar.PredicateExtensionality.fst
-    LAXCHECK        FStar.Set.fst
-    LAXCHECK        FStar.TSet.fsti
-    EXTRACT         FStar.Math.Lib.fst.checked.lax
-    EXTRACT         FStar.Classical.Sugar.fst.checked.lax
-    LAXCHECK        FStar.Calc.fst
-    EXTRACT         FStar.StrongExcludedMiddle.fst.checked.lax
-    EXTRACT         FStar.Tactics.Canon.Lemmas.fst.checked.lax
-    EXTRACT         FStar.IndefiniteDescription.fst.checked.lax
-    EXTRACT         FStar.Squash.fst.checked.lax
-    LAXCHECK        FStar.Stubs.Reflection.V2.Data.fsti
-    EXTRACT         FStar.Bijection.fst.checked.lax
-    EXTRACT         FStar.Pervasives.fst.checked.lax
-    EXTRACT         FStar.Algebra.CommMonoid.Equiv.fst.checked.lax
-    EXTRACT         FStar.Tactics.Logic.Lemmas.fst.checked.lax
-    LAXCHECK        FStar.Math.Lemmas.fst
-    EXTRACT         FStar.PredicateExtensionality.fst.checked.lax
-    EXTRACT         FStar.Monotonic.Witnessed.fst.checked.lax
-    LAXCHECK        FStar.Monotonic.Heap.fsti
-    EXTRACT         FStar.Classical.fst.checked.lax
-    LAXCHECK        FStar.List.Tot.Properties.fsti
-    LAXCHECK        FStar.Seq.Base.fsti
-    LAXCHECK        FStar.Tactics.CanonCommSwaps.fst
-    EXTRACT         FStar.Calc.fst.checked.lax
-    EXTRACT         FStar.Set.fst.checked.lax
-    LAXCHECK        FStar.Stubs.Reflection.V2.Builtins.fsti
-    LAXCHECK        FStar.Reflection.V2.Compare.fsti
-    LAXCHECK        FStar.BitVector.fsti
-    EXTRACT         FStar.Tactics.CanonCommSwaps.fst.checked.lax
-    LAXCHECK        FStar.Reflection.V1.Compare.fsti
-    LAXCHECK        FStar.Reflection.V2.Collect.fst
-    LAXCHECK        FStar.Reflection.TermEq.fsti
-    LAXCHECK        FStar.Stubs.Reflection.V1.Data.fsti
-    LAXCHECK        FStar.Heap.fst
-    EXTRACT         FStar.Reflection.V2.Collect.fst.checked.lax
-    LAXCHECK        FStar.List.Tot.Properties.fst
-    LAXCHECK        FStar.List.Tot.fst
-    LAXCHECK        FStar.UInt.fsti
-    LAXCHECK        FStar.Reflection.TermEq.Simple.fst
-    LAXCHECK        FStar.Seq.Base.fst
-    LAXCHECK        FStar.Seq.Properties.fsti
-    LAXCHECK        FStar.Reflection.V2.Derived.Lemmas.fst
-    LAXCHECK        FStar.Reflection.V2.Derived.fst
-    LAXCHECK        FStar.Reflection.TermEq.fst
-    LAXCHECK        FStar.ST.fst
-    LAXCHECK        FStar.Stubs.Reflection.V1.Builtins.fsti
-    EXTRACT         FStar.Reflection.TermEq.Simple.fst.checked.lax
-    LAXCHECK        FStar.Reflection.V1.Derived.fst
-    EXTRACT         FStar.Reflection.V2.Derived.fst.checked.lax
-    EXTRACT         FStar.Reflection.V2.Derived.Lemmas.fst.checked.lax
-    LAXCHECK        FStar.Reflection.V2.Compare.fst
-    LAXCHECK        FStar.Reflection.V2.fst
-    LAXCHECK        FStar.All.fsti
- * Warning 271 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.UInt.fsti(436,8-436,51):
-   - Pattern uses these theory symbols or terms that should not be in an SMT
-     pattern:
-       Prims.op_Subtraction
- 
-    EXTRACT         FStar.Reflection.V2.fst.checked.lax
-    EXTRACT         FStar.Reflection.V1.Derived.fst.checked.lax
-    LAXCHECK        FStar.Reflection.V1.Derived.Lemmas.fst
-    LAXCHECK        FStar.List.fst
-    LAXCHECK        FStar.UInt32.fsti
-    EXTRACT         FStar.Reflection.V2.Compare.fst.checked.lax
-    EXTRACT         FStar.Reflection.V1.Derived.Lemmas.fst.checked.lax
-    LAXCHECK        FStar.Reflection.V1.fst
-    EXTRACT         FStar.Seq.Base.fst.checked.lax
-    LAXCHECK        FStar.Char.fsti
-    EXTRACT         FStar.Math.Lemmas.fst.checked.lax
-    LAXCHECK        FStar.Seq.Properties.fst
-    LAXCHECK        FStar.Seq.fst
-    EXTRACT         FStar.Reflection.V1.fst.checked.lax
-    LAXCHECK        FStar.BV.fsti
-    LAXCHECK        FStar.Pprint.fsti
-    LAXCHECK        FStar.String.fsti
-    EXTRACT         FStar.Seq.fst.checked.lax
-    LAXCHECK        FStar.BitVector.fst
-    LAXCHECK        FStar.UInt.fst
-    LAXCHECK        FStar.Issue.fsti
-    LAXCHECK        FStar.Stubs.Errors.Msg.fsti
-    LAXCHECK        FStar.BV.fst
-    LAXCHECK        FStar.Tactics.BV.Lemmas.fsti
-    LAXCHECK        FStar.Stubs.Tactics.Common.fsti
-    EXTRACT         FStar.BitVector.fst.checked.lax
-    LAXCHECK        FStar.Tactics.BV.Lemmas.fst
-    LAXCHECK        FStar.Stubs.Tactics.Types.fsti
-    EXTRACT         FStar.List.Tot.Properties.fst.checked.lax
-    LAXCHECK        FStar.Stubs.Tactics.Result.fsti
-    EXTRACT         FStar.BV.fst.checked.lax
-    EXTRACT         FStar.Reflection.TermEq.fst.checked.lax
-    EXTRACT         FStar.Tactics.BV.Lemmas.fst.checked.lax
-    LAXCHECK        FStar.Tactics.Effect.fsti
- * Warning 271 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.UInt.fsti(436,8-436,51):
-   - Pattern uses these theory symbols or terms that should not be in an SMT
-     pattern:
-       Prims.op_Subtraction
- 
- * Warning 271 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.UInt.fst(293,8-293,25):
-   - Pattern uses these theory symbols or terms that should not be in an SMT
-     pattern:
-       Prims.op_Subtraction
-   - See also /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.UInt.fsti(436,8-436,51)
- 
-    LAXCHECK        FStar.Tactics.Effect.fst
-    LAXCHECK        FStar.Tactics.Util.fst
-    LAXCHECK        FStar.Tactics.NamedView.fsti
-    LAXCHECK        FStar.Stubs.Tactics.Unseal.fsti
-    LAXCHECK        FStar.Tactics.Names.fsti
-    LAXCHECK        FStar.Tactics.SMT.fsti
-    LAXCHECK        FStar.Tactics.Print.fsti
-    LAXCHECK        FStar.Tactics.MApply0.fsti
-    LAXCHECK        FStar.Tactics.BV.fsti
-    LAXCHECK        FStar.Tactics.Canon.fsti
-    LAXCHECK        FStar.Tactics.Typeclasses.fsti
-    LAXCHECK        FStar.Tactics.MkProjectors.fsti
-    LAXCHECK        FStar.Tactics.LaxTermEq.fsti
-    LAXCHECK        FStar.Tactics.Easy.fsti
-    LAXCHECK        FStar.Tactics.Parametricity.fsti
-    LAXCHECK        FStar.Stubs.Tactics.V2.Builtins.fsti
-    LAXCHECK        FStar.Stubs.Tactics.V1.Builtins.fsti
-    EXTRACT         FStar.Tactics.Effect.fst.checked.lax
-    EXTRACT         FStar.Tactics.Util.fst.checked.lax
-    LAXCHECK        FStar.Tactics.Visit.fst
-    LAXCHECK        FStar.Tactics.V1.SyntaxHelpers.fst
-    LAXCHECK        FStar.Reflection.V1.Formula.fst
-    EXTRACT         FStar.UInt.fst.checked.lax
-    LAXCHECK        FStar.Tactics.V2.SyntaxHelpers.fsti
-    LAXCHECK        FStar.Tactics.NamedView.fst
-    LAXCHECK        FStar.FunctionalExtensionality.fst
-    LAXCHECK        FStar.Tactics.SMT.fst
-    LAXCHECK        FStar.Tactics.V2.SyntaxCoercions.fst
-    LAXCHECK        FStar.Reflection.V2.Formula.fst
-    LAXCHECK        FStar.Tactics.LaxTermEq.fst
-    EXTRACT         FStar.Tactics.V2.SyntaxCoercions.fst.checked.lax
-    LAXCHECK        FStar.Tactics.V2.SyntaxHelpers.fst
-    EXTRACT         FStar.Seq.Properties.fst.checked.lax
-    EXTRACT         FStar.Tactics.Visit.fst.checked.lax
-    LAXCHECK        FStar.Tactics.Names.fst
-    EXTRACT         FStar.Tactics.SMT.fst.checked.lax
-    EXTRACT         FStar.Tactics.V1.SyntaxHelpers.fst.checked.lax
-    EXTRACT         FStar.FunctionalExtensionality.fst.checked.lax
-    EXTRACT         FStar.Tactics.LaxTermEq.fst.checked.lax
-    EXTRACT         FStar.Reflection.V1.Formula.fst.checked.lax
-    LAXCHECK        FStar.Tactics.V1.Derived.fst
-    LAXCHECK        FStar.Tactics.V1.Logic.fsti
-    EXTRACT         FStar.Tactics.Names.fst.checked.lax
-    EXTRACT         FStar.Reflection.V2.Formula.fst.checked.lax
-    LAXCHECK        FStar.Tactics.V2.Derived.fst
-    LAXCHECK        FStar.Tactics.V2.Logic.fsti
-    EXTRACT         FStar.Tactics.V2.SyntaxHelpers.fst.checked.lax
-    EXTRACT         FStar.Tactics.NamedView.fst.checked.lax
-    EXTRACT         FStar.Tactics.V1.Derived.fst.checked.lax
-    LAXCHECK        FStar.Tactics.V1.Logic.fst
-    EXTRACT         FStar.Tactics.V2.Derived.fst.checked.lax
-    LAXCHECK        FStar.Tactics.Print.fst
-    LAXCHECK        FStar.Tactics.V2.Logic.fst
-    LAXCHECK        FStar.Tactics.V2.Bare.fsti
-    LAXCHECK        FStar.Tactics.MApply0.fst
-    LAXCHECK        FStar.Tactics.Typeclasses.fst
-    LAXCHECK        FStar.Tactics.MkProjectors.fst
-    LAXCHECK        FStar.Reflection.V2.Arith.fst
-    LAXCHECK        FStar.Tactics.TypeRepr.fsti
-    LAXCHECK        FStar.Tactics.PrettifyType.fsti
-    LAXCHECK        FStar.Tactics.CheckLN.fsti
-    LAXCHECK        FStar.Tactics.CanonCommMonoidSimple.Equiv.fst
-    LAXCHECK        FStar.Tactics.Easy.fst
-    LAXCHECK        FStar.Tactics.Parametricity.fst
-    EXTRACT         FStar.Tactics.MApply0.fst.checked.lax
-    EXTRACT         FStar.Tactics.V1.Logic.fst.checked.lax
-    EXTRACT         FStar.Tactics.Print.fst.checked.lax
-    EXTRACT         FStar.Tactics.V2.Logic.fst.checked.lax
-    LAXCHECK        FStar.Tactics.CheckLN.fst
-    LAXCHECK        FStar.Tactics.TypeRepr.fst
-    EXTRACT         FStar.Tactics.Easy.fst.checked.lax
-    EXTRACT         FStar.Tactics.MkProjectors.fst.checked.lax
-    LAXCHECK        FStar.Tactics.PrettifyType.fst
-    EXTRACT         FStar.Tactics.CheckLN.fst.checked.lax
-    EXTRACT         FStar.Reflection.V2.Arith.fst.checked.lax
-    LAXCHECK        FStar.Tactics.BV.fst
-    LAXCHECK        FStar.Tactics.Canon.fst
-    EXTRACT         FStar.Tactics.Typeclasses.fst.checked.lax
-    EXTRACT         FStar.Tactics.TypeRepr.fst.checked.lax
-    EXTRACT         FStar.Tactics.CanonCommMonoidSimple.Equiv.fst.checked.lax
-    EXTRACT         FStar.Tactics.Parametricity.fst.checked.lax
-    EXTRACT         FStar.Tactics.Canon.fst.checked.lax
-    EXTRACT         FStar.Tactics.BV.fst.checked.lax
-    EXTRACT         FStar.Tactics.PrettifyType.fst.checked.lax
-   BUILD            STAGE 1 FSTARC
-   EXTRACT          STAGE 2 FSTARC
-    DEPEND          /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src
-    LAXCHECK        Prims.fst
-    LAXCHECK        FStar.NormSteps.fsti
-    LAXCHECK        FStar.Pervasives.Native.fst
-    LAXCHECK        FStar.Attributes.fsti
-    LAXCHECK        FStar.Pervasives.fsti
-    LAXCHECK        FStar.Pervasives.fst
-    LAXCHECK        FStar.Prelude.fsti
-    LAXCHECK        FStarC.Effect.fsti
-    LAXCHECK        FStar.Classical.Sugar.fsti
-    LAXCHECK        FStar.Ghost.fsti
-    LAXCHECK        FStar.Classical.fsti
-    LAXCHECK        FStar.Squash.fsti
-    LAXCHECK        FStar.Sealed.fsti
-    LAXCHECK        FStar.Float.fsti
-    LAXCHECK        FStar.Mul.fst
-    LAXCHECK        FStar.Monotonic.Pure.fst
-    LAXCHECK        FStar.ImmutableArray.Base.fsti
-    LAXCHECK        FStarC.Array.fsti
-    LAXCHECK        FStarC.VConfig.fsti
-    LAXCHECK        FStar.Exn.fst
-    LAXCHECK        FStar.Set.fsti
-    LAXCHECK        FStar.Preorder.fst
-    LAXCHECK        FStarC.Errors.Codes.fsti
-    LAXCHECK        FStarC.Sealed.fsti
-    LAXCHECK        FStarC.NormSteps.fst
-    LAXCHECK        FStar.Order.fst
-    LAXCHECK        FStarC.Reflection.V2.Interpreter.fsti
-    LAXCHECK        FStarC.Reflection.V1.Interpreter.fsti
-    LAXCHECK        FStar.Math.Lemmas.fsti
-    LAXCHECK        FStar.Range.fsti
-    LAXCHECK        FStarC.Sealed.fst
-    LAXCHECK        FStar.Monotonic.Witnessed.fsti
-    LAXCHECK        FStarC.Option.fsti
-    LAXCHECK        FStarC.List.fsti
-    LAXCHECK        FStarC.PSMap.fsti
-    LAXCHECK        FStarC.Json.fsti
-    LAXCHECK        FStarC.Find.fsti
-    LAXCHECK        FStarC.SMap.fsti
-    LAXCHECK        FStarC.Filepath.fsti
-    LAXCHECK        FStarC.Order.fsti
-    LAXCHECK        FStarC.Stats.fsti
-    LAXCHECK        FStarC.Timing.fsti
-    LAXCHECK        FStarC.Debug.fsti
-    LAXCHECK        FStarC.Options.Ext.fsti
-    LAXCHECK        FStarC.GenSym.fsti
-    LAXCHECK        FStarC.Thunk.fsti
-    LAXCHECK        FStarC.Hash.fsti
-    LAXCHECK        FStarC.Unionfind.fsti
-    LAXCHECK        FStarC.Dyn.fsti
-    LAXCHECK        FStarC.Platform.Base.fsti
-    LAXCHECK        FStarC.Plugins.Base.fsti
-    LAXCHECK        FStarC.Profiling.fsti
-    LAXCHECK        FStarC.EditDist.fsti
-    LAXCHECK        FStarC.IMap.fsti
-    LAXCHECK        FStarC.PIMap.fsti
-    LAXCHECK        FStarC.Misc.fsti
-    LAXCHECK        FStarC.Int.Extra.fsti
-    LAXCHECK        FStarC.OCaml.fsti
-    LAXCHECK        FStarC.Hints.fsti
-    LAXCHECK        FStarC.Hooks.fsti
-    LAXCHECK        FStarC.Interactive.Ide.fsti
-    LAXCHECK        FStarC.Interactive.Legacy.fsti
-    LAXCHECK        FStarC.Interactive.Lsp.fsti
-    LAXCHECK        FStarC.Prettyprint.fsti
-    LAXCHECK        FStar.List.Tot.Base.fst
-    EXTRACT         FStarC.NormSteps.fst.checked.lax
-    LAXCHECK        FStar.IndefiniteDescription.fsti
-    LAXCHECK        FStarC.VConfig.fst
-    EXTRACT         FStarC.Sealed.fst.checked.lax
-    LAXCHECK        FStar.Stubs.Reflection.Types.fsti
-    LAXCHECK        FStarC.Option.fst
-    LAXCHECK        FStarC.GenSym.fst
-    LAXCHECK        FStarC.Thunk.fst
-    LAXCHECK        FStarC.Plugins.fsti
-    LAXCHECK        FStarC.Real.fsti
-    LAXCHECK        FStarC.Common.fsti
-    LAXCHECK        FStarC.Order.fst
-    LAXCHECK        FStarC.Format.fsti
-    LAXCHECK        FStar.StrongExcludedMiddle.fst
-    LAXCHECK        FStar.TSet.fsti
-    EXTRACT         FStarC.GenSym.fst.checked.lax
-    EXTRACT         FStarC.VConfig.fst.checked.lax
-    EXTRACT         FStarC.Option.fst.checked.lax
-    EXTRACT         FStarC.Thunk.fst.checked.lax
-    EXTRACT         FStarC.Order.fst.checked.lax
-    EXTRACT         FStar.Pervasives.fst.checked.lax
-    LAXCHECK        FStarC.Errors.Codes.fst
-    LAXCHECK        FStar.Monotonic.Heap.fsti
-    LAXCHECK        FStar.Seq.Base.fsti
-    LAXCHECK        FStar.List.Tot.Properties.fsti
-    LAXCHECK        FStar.BitVector.fsti
-    LAXCHECK        FStar.Heap.fst
-    LAXCHECK        FStar.List.Tot.fst
-    LAXCHECK        FStar.UInt.fsti
-    LAXCHECK        FStar.Seq.Base.fst
-    LAXCHECK        FStar.Seq.Properties.fsti
-    LAXCHECK        FStar.ST.fst
-    EXTRACT         FStarC.Errors.Codes.fst.checked.lax
-    LAXCHECK        FStar.All.fsti
- * Warning 271 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.UInt.fsti(436,8-436,51):
-   - Pattern uses these theory symbols or terms that should not be in an SMT
-     pattern:
-       Prims.op_Subtraction
- 
-    LAXCHECK        FStar.UInt32.fsti
-    LAXCHECK        FStar.List.fst
-    LAXCHECK        FStar.Char.fsti
-    EXTRACT         FStar.Seq.Base.fst.checked.lax
-    LAXCHECK        FStar.Seq.Properties.fst
-    LAXCHECK        FStar.Pprint.fsti
-    LAXCHECK        FStarC.BaseTypes.fsti
-    LAXCHECK        FStarC.String.fsti
-    LAXCHECK        FStar.String.fsti
-    LAXCHECK        FStarC.Util.fsti
-    LAXCHECK        FStarC.Getopt.fsti
-    LAXCHECK        FStarC.Debug.fst
-    LAXCHECK        FStarC.EditDist.fst
-    LAXCHECK        FStar.Issue.fsti
-    LAXCHECK        FStar.Stubs.Errors.Msg.fsti
-    EXTRACT         FStarC.EditDist.fst.checked.lax
-    LAXCHECK        FStar.Stubs.Tactics.Common.fsti
-    EXTRACT         FStarC.Debug.fst.checked.lax
-    LAXCHECK        FStarC.StringBuffer.fsti
-    LAXCHECK        FStarC.Pprint.fsti
-    LAXCHECK        FStarC.Misc.fst
-    LAXCHECK        FStar.Stubs.Tactics.Types.fsti
-    LAXCHECK        FStarC.Common.fst
-    LAXCHECK        FStarC.Find.Z3.fsti
-    LAXCHECK        FStar.Stubs.Tactics.Result.fsti
-    EXTRACT         FStarC.Misc.fst.checked.lax
-    EXTRACT         FStarC.Common.fst.checked.lax
-    LAXCHECK        FStar.Tactics.Effect.fsti
-    LAXCHECK        FStar.Tactics.Typeclasses.fsti
-    LAXCHECK        FStarC.Class.Monad.fsti
-    LAXCHECK        FStarC.Class.Show.fsti
-    LAXCHECK        FStarC.Errors.Msg.fsti
-    LAXCHECK        FStarC.Class.Deq.fsti
-    LAXCHECK        FStarC.Class.Monoid.fsti
-    LAXCHECK        FStarC.Class.Tagged.fsti
-    LAXCHECK        FStarC.Class.Listlike.fsti
-    LAXCHECK        FStarC.Class.Tagged.fst
-    LAXCHECK        FStarC.Class.Monoid.fst
-    LAXCHECK        FStarC.Class.Deq.fst
-    LAXCHECK        FStarC.Class.Ord.fsti
-    LAXCHECK        FStarC.Path.fsti
-    LAXCHECK        FStarC.Class.Show.fst
-    LAXCHECK        FStarC.Find.fst
-    LAXCHECK        FStarC.Options.Ext.fst
-    LAXCHECK        FStarC.Options.fsti
-    LAXCHECK        FStarC.Class.PP.fsti
-    LAXCHECK        FStarC.Platform.fsti
-    LAXCHECK        FStarC.Time.fsti
-    LAXCHECK        FStarC.Errors.Msg.fst
-    LAXCHECK        FStarC.Class.Monad.fst
-    LAXCHECK        FStarC.Writer.fsti
-    LAXCHECK        FStarC.Class.Listlike.fst
-    EXTRACT         FStar.Seq.Properties.fst.checked.lax
-    EXTRACT         FStarC.Class.Tagged.fst.checked.lax
-    LAXCHECK        FStarC.Path.fst
-    LAXCHECK        FStarC.Platform.fst
-    LAXCHECK        FStarC.OCaml.fst
-    EXTRACT         FStarC.Class.Monoid.fst.checked.lax
-    LAXCHECK        FStarC.Class.PP.fst
-    LAXCHECK        FStarC.Class.Ord.fst
-    LAXCHECK        FStarC.Stats.fst
-    LAXCHECK        FStarC.Range.Type.fsti
-    LAXCHECK        FStarC.Class.Setlike.fsti
-    LAXCHECK        FStarC.CList.fsti
-    LAXCHECK        FStarC.Real.fst
-    LAXCHECK        FStarC.Class.Hashable.fsti
-    LAXCHECK        FStarC.Writer.fst
-    EXTRACT         FStarC.Options.Ext.fst.checked.lax
-    EXTRACT         FStarC.Errors.Msg.fst.checked.lax
-    EXTRACT         FStarC.Class.Listlike.fst.checked.lax
-    EXTRACT         FStarC.Class.Show.fst.checked.lax
-    EXTRACT         FStarC.Find.fst.checked.lax
-    EXTRACT         FStarC.Class.Monad.fst.checked.lax
-    EXTRACT         FStarC.Class.Deq.fst.checked.lax
-    LAXCHECK        FStarC.Options.fst
-    LAXCHECK        FStarC.Profiling.fst
-    LAXCHECK        FStarC.Find.Z3.fst
-    EXTRACT         FStarC.Platform.fst.checked.lax
-    EXTRACT         FStarC.Path.fst.checked.lax
-    LAXCHECK        FStarC.Range.Type.fst
-    LAXCHECK        FStarC.Range.Ops.fsti
-    LAXCHECK        FStarC.Class.HasRange.fsti
-    EXTRACT         FStarC.OCaml.fst.checked.lax
-    LAXCHECK        FStarC.CList.fst
-    LAXCHECK        FStarC.Class.Hashable.fst
-    EXTRACT         FStarC.Writer.fst.checked.lax
-    EXTRACT         FStarC.Real.fst.checked.lax
-    EXTRACT         FStarC.Stats.fst.checked.lax
-    EXTRACT         FStarC.Class.PP.fst.checked.lax
-    LAXCHECK        FStarC.Class.Setlike.fst
-    LAXCHECK        FStarC.FlatSet.fsti
-    LAXCHECK        FStarC.RBSet.fsti
-    EXTRACT         FStarC.Find.Z3.fst.checked.lax
-    EXTRACT         FStarC.Range.Type.fst.checked.lax
-    LAXCHECK        FStarC.Range.Ops.fst
-    LAXCHECK        FStarC.Range.fsti
-    LAXCHECK        FStarC.Ident.fsti
-    EXTRACT         FStarC.Profiling.fst.checked.lax
-    EXTRACT         FStarC.Class.Hashable.fst.checked.lax
-    EXTRACT         FStarC.CList.fst.checked.lax
-    EXTRACT         FStarC.Class.Ord.fst.checked.lax
-    LAXCHECK        FStarC.FlatSet.fst
-    LAXCHECK        FStarC.RBSet.fst
-    LAXCHECK        FStarC.Class.HasRange.fst
-    LAXCHECK        FStarC.Errors.fsti
-    LAXCHECK        FStarC.Ident.fst
-    LAXCHECK        FStarC.Parser.Const.Tuples.fsti
-    LAXCHECK        FStarC.Const.fsti
-    LAXCHECK        FStarC.Parser.Dep.fsti
-    LAXCHECK        FStarC.Interactive.CompletionTable.fsti
-    EXTRACT         FStarC.Class.Setlike.fst.checked.lax
-    EXTRACT         FStarC.Range.Ops.fst.checked.lax
-    EXTRACT         FStarC.FlatSet.fst.checked.lax
-    EXTRACT         FStarC.RBSet.fst.checked.lax
-    EXTRACT         FStarC.Class.HasRange.fst.checked.lax
-    LAXCHECK        FStarC.Parser.Const.Tuples.fst
-    LAXCHECK        FStarC.Const.fst
-    LAXCHECK        FStarC.Parser.Const.fst
-    LAXCHECK        FStarC.Syntax.Syntax.fsti
-    LAXCHECK        FStarC.Extraction.ML.Syntax.fsti
-    LAXCHECK        FStarC.Interactive.CompletionTable.fst
-    EXTRACT         FStarC.Ident.fst.checked.lax
-    LAXCHECK        FStarC.Errors.fst
-    LAXCHECK        FStarC.Plugins.fst
-    LAXCHECK        FStarC.Interactive.JsonHelper.fsti
-    LAXCHECK        FStarC.Dependencies.fsti
-    EXTRACT         FStarC.Parser.Const.Tuples.fst.checked.lax
-    EXTRACT         FStarC.Const.fst.checked.lax
- * Warning 337 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/basic/FStarC.Plugins.fst(85,16-85,17):
-   - The operator '@' has been resolved to FStar.List.Tot.append even though
-     FStar.List.Tot is not in scope. Please add an 'open FStar.List.Tot' to stop
-     relying on this deprecated, special treatment of '@'.
- 
- * Warning 337 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/basic/FStarC.Plugins.fst(86,16-86,17):
-   - The operator '@' has been resolved to FStar.List.Tot.append even though
-     FStar.List.Tot is not in scope. Please add an 'open FStar.List.Tot' to stop
-     relying on this deprecated, special treatment of '@'.
- 
- * Warning 337 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/basic/FStarC.Plugins.fst(87,16-87,17):
-   - The operator '@' has been resolved to FStar.List.Tot.append even though
-     FStar.List.Tot is not in scope. Please add an 'open FStar.List.Tot' to stop
-     relying on this deprecated, special treatment of '@'.
- 
- * Warning 337 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/basic/FStarC.Plugins.fst(88,16-88,17):
-   - The operator '@' has been resolved to FStar.List.Tot.append even though
-     FStar.List.Tot is not in scope. Please add an 'open FStar.List.Tot' to stop
-     relying on this deprecated, special treatment of '@'.
- 
-    LAXCHECK        FStarC.Dependencies.fst
-    EXTRACT         FStarC.Plugins.fst.checked.lax
-    EXTRACT         FStarC.Parser.Const.fst.checked.lax
-    EXTRACT         FStarC.Options.fst.checked.lax
-    LAXCHECK        FStarC.Extraction.ML.Syntax.fst
-    LAXCHECK        FStarC.Extraction.ML.RemoveUnusedParameters.fsti
-    LAXCHECK        FStarC.Extraction.ML.Code.fsti
-    LAXCHECK        FStarC.Extraction.ML.PrintFS.fsti
-    LAXCHECK        FStarC.Extraction.ML.PrintML.fsti
-    EXTRACT         FStarC.Interactive.CompletionTable.fst.checked.lax
-    EXTRACT         FStarC.Dependencies.fst.checked.lax
-    EXTRACT         FStarC.Errors.fst.checked.lax
-    LAXCHECK        FStarC.Extraction.ML.RemoveUnusedParameters.fst
-    LAXCHECK        FStarC.Extraction.ML.PrintFS.fst
-    EXTRACT         FStarC.Extraction.ML.Syntax.fst.checked.lax
-    EXTRACT         FStarC.Extraction.ML.RemoveUnusedParameters.fst.checked.lax
-    LAXCHECK        FStarC.Syntax.Syntax.fst
-    LAXCHECK        FStarC.Syntax.Unionfind.fsti
-    LAXCHECK        FStarC.Syntax.Subst.fsti
-    LAXCHECK        FStarC.Syntax.InstFV.fsti
-    LAXCHECK        FStarC.Syntax.Free.fsti
-    LAXCHECK        FStarC.Syntax.Print.Ugly.fsti
-    LAXCHECK        FStarC.Parser.AST.fsti
-    LAXCHECK        FStarC.Syntax.Formula.fsti
-    LAXCHECK        FStarC.Syntax.MutRecTy.fsti
-    LAXCHECK        FStarC.Syntax.VisitM.fsti
-    LAXCHECK        FStarC.Syntax.Visit.fsti
-    LAXCHECK        FStarC.Syntax.Embeddings.Base.fsti
-    LAXCHECK        FStarC.Class.Binders.fsti
-    LAXCHECK        FStarC.TypeChecker.Common.fsti
-    LAXCHECK        FStarC.SMTEncoding.Term.fsti
-    LAXCHECK        FStarC.Parser.Const.ExtractAs.fsti
-    LAXCHECK        FStarC.Reflection.V2.Constants.fst
-    LAXCHECK        FStarC.Reflection.V2.Data.fsti
-    LAXCHECK        FStarC.Reflection.V1.Constants.fst
-    LAXCHECK        FStarC.Tactics.Common.fsti
-    LAXCHECK        FStarC.Syntax.Hash.fsti
-    LAXCHECK        FStarC.Syntax.Compress.fsti
-    LAXCHECK        FStarC.Syntax.TermHashTable.fsti
-    LAXCHECK        FStarC.Reflection.V1.Data.fsti
-    LAXCHECK        FStarC.Syntax.Unionfind.fst
-    LAXCHECK        FStarC.Tactics.Common.fst
-    LAXCHECK        FStarC.Syntax.Subst.fst
-    LAXCHECK        FStarC.Syntax.InstFV.fst
-    LAXCHECK        FStarC.Syntax.Free.fst
-    LAXCHECK        FStarC.Syntax.Util.fsti
-    LAXCHECK        FStarC.Syntax.VisitM.fst
-    LAXCHECK        FStarC.Syntax.Visit.fst
-    LAXCHECK        FStarC.Syntax.Hash.fst
-    LAXCHECK        FStarC.Class.Binders.fst
-    LAXCHECK        FStarC.Defensive.fsti
-    EXTRACT         FStarC.Reflection.V1.Constants.fst.checked.lax
-    EXTRACT         FStarC.Reflection.V2.Constants.fst.checked.lax
-    EXTRACT         FStarC.Extraction.ML.PrintFS.fst.checked.lax
-    LAXCHECK        FStarC.Syntax.Embeddings.fsti
-    LAXCHECK        FStarC.Syntax.Embeddings.AppEmb.fsti
-    LAXCHECK        FStarC.Reflection.V1.Data.fst
-    LAXCHECK        FStarC.Reflection.V2.Data.fst
-    LAXCHECK        FStarC.SMTEncoding.Term.fst
-    LAXCHECK        FStarC.SMTEncoding.UnsatCore.fsti
-    LAXCHECK        FStarC.SMTEncoding.Pruning.fsti
-    EXTRACT         FStarC.Tactics.Common.fst.checked.lax
-    EXTRACT         FStarC.Syntax.Visit.fst.checked.lax
-    EXTRACT         FStarC.Syntax.InstFV.fst.checked.lax
-    EXTRACT         FStarC.Class.Binders.fst.checked.lax
-    LAXCHECK        FStarC.Syntax.Util.fst
-    LAXCHECK        FStarC.Syntax.Print.Ugly.fst
-    LAXCHECK        FStarC.Syntax.MutRecTy.fst
-    LAXCHECK        FStarC.Parser.Const.ExtractAs.fst
-    EXTRACT         FStarC.Syntax.Unionfind.fst.checked.lax
-    LAXCHECK        FStarC.Parser.AST.fst
-    LAXCHECK        FStarC.Parser.ToDocument.fsti
-    LAXCHECK        FStarC.Parser.AST.Util.fsti
-    LAXCHECK        FStarC.Syntax.DsEnv.fsti
-    LAXCHECK        FStarC.Parser.AST.Diff.fsti
-    EXTRACT         FStarC.Syntax.Free.fst.checked.lax
-    LAXCHECK        FStarC.SMTEncoding.UnsatCore.fst
-    LAXCHECK        FStarC.SMTEncoding.SolverState.fsti
-    LAXCHECK        FStarC.SMTEncoding.Pruning.fst
-    LAXCHECK        FStarC.Syntax.Embeddings.AppEmb.fst
-    EXTRACT         FStarC.Syntax.Hash.fst.checked.lax
-    EXTRACT         FStarC.Syntax.Subst.fst.checked.lax
-    EXTRACT         FStarC.Reflection.V1.Data.fst.checked.lax
-    EXTRACT         FStarC.Reflection.V2.Data.fst.checked.lax
-    EXTRACT         FStarC.Parser.Const.ExtractAs.fst.checked.lax
-    LAXCHECK        FStarC.Parser.AST.Diff.fst
-    EXTRACT         FStarC.Syntax.MutRecTy.fst.checked.lax
-    LAXCHECK        FStarC.Parser.ToDocument.fst
-    LAXCHECK        FStarC.Parser.AST.Util.fst
-    LAXCHECK        FStarC.Parser.ParseIt.fsti
- * Warning 328 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/parser/FStarC.Parser.AST.fst(784,8-784,22):
-   - Global binding
-         'FStarC.Parser.AST.decl_to_string'
-     is recursive but not used in its body
- 
-    EXTRACT         FStarC.SMTEncoding.UnsatCore.fst.checked.lax
-    LAXCHECK        FStarC.Syntax.DsEnv.fst
-    LAXCHECK        FStarC.Syntax.Resugar.fsti
-    LAXCHECK        FStarC.Syntax.Print.Pretty.fsti
-    LAXCHECK        FStarC.Syntax.Print.fsti
-    LAXCHECK        FStarC.ToSyntax.TickedVars.fsti
-    LAXCHECK        FStarC.ToSyntax.ToSyntax.fsti
-    LAXCHECK        FStarC.TypeChecker.Env.fsti
-    LAXCHECK        FStarC.ToSyntax.Interleave.fsti
-    EXTRACT         FStarC.Syntax.Embeddings.AppEmb.fst.checked.lax
-    EXTRACT         FStarC.Syntax.VisitM.fst.checked.lax
-    LAXCHECK        FStarC.SMTEncoding.Z3.fsti
-    EXTRACT         FStarC.Syntax.Print.Ugly.fst.checked.lax
-    LAXCHECK        FStarC.Parser.Driver.fsti
- * Warning 328 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/parser/FStarC.Parser.ToDocument.fst(733,8-733,14):
-   - Global binding
-         'FStarC.Parser.ToDocument.p_decl'
-     is recursive but not used in its body
- 
- * Warning 328 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/parser/FStarC.Parser.ToDocument.fst(754,4-754,13):
-   - Global binding
-         'FStarC.Parser.ToDocument.p_justSig'
-     is recursive but not used in its body
- 
- * Warning 328 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/parser/FStarC.Parser.ToDocument.fst(1093,4-1093,24):
-   - Global binding
-         'FStarC.Parser.ToDocument.p_disjunctivePattern'
-     is recursive but not used in its body
- 
- * Warning 328 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/parser/FStarC.Parser.ToDocument.fst(1728,4-1728,21):
-   - Global binding
-         'FStarC.Parser.ToDocument.p_maybeFocusArrow'
-     is recursive but not used in its body
- 
- * Warning 328 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/parser/FStarC.Parser.ToDocument.fst(1992,4-1992,12):
-   - Global binding
-         'FStarC.Parser.ToDocument.p_tmNoEq'
-     is recursive but not used in its body
- 
-    LAXCHECK        FStarC.ToSyntax.Interleave.fst
-    LAXCHECK        FStarC.ToSyntax.TickedVars.fst
-    EXTRACT         FStarC.Parser.AST.Util.fst.checked.lax
-    LAXCHECK        FStarC.Syntax.Resugar.fst
-    LAXCHECK        FStarC.Syntax.Print.Pretty.fst
-    LAXCHECK        FStarC.Syntax.Print.fst
-    LAXCHECK        FStarC.Syntax.Formula.fst
-    LAXCHECK        FStarC.Syntax.Embeddings.Base.fst
-    LAXCHECK        FStarC.Syntax.Embeddings.fst
-    LAXCHECK        FStarC.Defensive.fst
-    LAXCHECK        FStarC.TypeChecker.Common.fst
-    LAXCHECK        FStarC.Syntax.Compress.fst
-    EXTRACT         FStarC.SMTEncoding.Pruning.fst.checked.lax
-    EXTRACT         FStarC.Parser.AST.Diff.fst.checked.lax
-    LAXCHECK        FStarC.ToSyntax.ToSyntax.fst
-    EXTRACT         FStarC.Syntax.Syntax.fst.checked.lax
-    LAXCHECK        FStarC.Parser.Driver.fst
-    LAXCHECK        FStarC.Parser.Dep.fst
-    LAXCHECK        FStarC.Prettyprint.fst
-    EXTRACT         FStarC.SMTEncoding.Term.fst.checked.lax
-    EXTRACT         FStarC.Syntax.Util.fst.checked.lax
-    EXTRACT         FStarC.Parser.AST.fst.checked.lax
-    LAXCHECK        FStarC.SMTEncoding.Z3.fst
-    EXTRACT         FStarC.Syntax.Print.Pretty.fst.checked.lax
-    EXTRACT         FStarC.Defensive.fst.checked.lax
-    EXTRACT         FStarC.Syntax.Compress.fst.checked.lax
-    EXTRACT         FStarC.Prettyprint.fst.checked.lax
-    EXTRACT         FStarC.ToSyntax.Interleave.fst.checked.lax
-    EXTRACT         FStarC.Parser.Driver.fst.checked.lax
-    EXTRACT         FStarC.ToSyntax.TickedVars.fst.checked.lax
-    EXTRACT         FStarC.Syntax.Embeddings.Base.fst.checked.lax
-    LAXCHECK        FStarC.TypeChecker.Env.fst
-    LAXCHECK        FStarC.SMTEncoding.SolverState.fst
-    LAXCHECK        FStarC.SMTEncoding.Util.fsti
-    LAXCHECK        FStarC.TypeChecker.TermEqAndSimplify.fsti
-    LAXCHECK        FStarC.TypeChecker.Err.fsti
-    LAXCHECK        FStarC.TypeChecker.PatternUtils.fsti
-    LAXCHECK        FStarC.TypeChecker.DeferredImplicits.fsti
-    LAXCHECK        FStarC.TypeChecker.Rel.fsti
-    LAXCHECK        FStarC.TypeChecker.Util.fsti
-    LAXCHECK        FStarC.Reflection.V2.Builtins.fsti
-    LAXCHECK        FStarC.Reflection.V2.Embeddings.fsti
-    LAXCHECK        FStarC.TypeChecker.Generalize.fsti
-    LAXCHECK        FStarC.TypeChecker.Positivity.fsti
-    LAXCHECK        FStarC.SMTEncoding.Solver.Cache.fsti
-    LAXCHECK        FStarC.SMTEncoding.Solver.fsti
-    LAXCHECK        FStarC.TypeChecker.Quals.fsti
-    LAXCHECK        FStarC.TypeChecker.Core.fsti
-    LAXCHECK        FStarC.TypeChecker.DMFF.fsti
-    LAXCHECK        FStarC.TypeChecker.TcEffect.fsti
-    LAXCHECK        FStarC.TypeChecker.Tc.fsti
-    LAXCHECK        FStarC.Extraction.ML.UEnv.fsti
-    LAXCHECK        FStarC.Tactics.Hooks.fsti
-    LAXCHECK        FStarC.Reflection.V1.Builtins.fsti
-    LAXCHECK        FStarC.Reflection.V1.Embeddings.fsti
-    LAXCHECK        FStarC.Interactive.JsonHelper.fst
-    EXTRACT         FStarC.Syntax.Formula.fst.checked.lax
-    EXTRACT         FStarC.Parser.ToDocument.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Common.fst.checked.lax
-    EXTRACT         FStarC.Syntax.Print.fst.checked.lax
- * Warning 319 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/tosyntax/FStarC.ToSyntax.ToSyntax.fst(517,13-517,47):
-   - Effectful argument let _ = FStarC.Ident.string_of_id op_plus in
-     _ = "+" (FStarC.Effect.ALL) to erased function assert, consider let binding it
- 
- * Warning 319 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/tosyntax/FStarC.ToSyntax.ToSyntax.fst(535,19-535,56):
-   - Effectful argument let _ = FStarC.Ident.string_of_lid max_lid in
-     _ = "max" (FStarC.Effect.ALL) to erased function assert, consider let binding it
- 
-    EXTRACT         FStarC.Syntax.DsEnv.fst.checked.lax
-    LAXCHECK        FStarC.TypeChecker.PatternUtils.fst
-    LAXCHECK        FStarC.SMTEncoding.Solver.Cache.fst
-    LAXCHECK        FStarC.TypeChecker.TermEqAndSimplify.fst
-    LAXCHECK        FStarC.TypeChecker.NBETerm.fsti
-    LAXCHECK        FStarC.TypeChecker.DeferredImplicits.fst
-    LAXCHECK        FStarC.SMTEncoding.Util.fst
-    LAXCHECK        FStarC.SMTEncoding.ErrorReporting.fsti
-    LAXCHECK        FStarC.SMTEncoding.Env.fst
-    LAXCHECK        FStarC.Extraction.ML.UEnv.fst
-    LAXCHECK        FStarC.Extraction.ML.Util.fsti
-    LAXCHECK        FStarC.Extraction.ML.Term.fsti
-    LAXCHECK        FStarC.Extraction.ML.RegEmb.fsti
-    LAXCHECK        FStarC.Extraction.ML.Modul.fsti
-    LAXCHECK        FStarC.Extraction.Krml.fsti
-    EXTRACT         FStarC.Syntax.Resugar.fst.checked.lax
-    LAXCHECK        FStarC.Reflection.V2.Embeddings.fst
-    LAXCHECK        FStarC.Reflection.V1.Embeddings.fst
-    EXTRACT         FStarC.Parser.Dep.fst.checked.lax
-    LAXCHECK        FStarC.TypeChecker.TcTerm.fsti
-    LAXCHECK        FStarC.TypeChecker.TcInductive.fsti
-    EXTRACT         FStarC.SMTEncoding.Z3.fst.checked.lax
-    EXTRACT         FStarC.SMTEncoding.SolverState.fst.checked.lax
-    EXTRACT         FStarC.Interactive.JsonHelper.fst.checked.lax
-    LAXCHECK        FStarC.Tactics.Types.Reflection.fsti
-    EXTRACT         FStarC.Syntax.Embeddings.fst.checked.lax
-    LAXCHECK        FStarC.Extraction.ML.Util.fst
-    LAXCHECK        FStarC.Extraction.ML.Code.fst
-    LAXCHECK        FStarC.Extraction.Krml.fst
-    LAXCHECK        FStarC.SMTEncoding.ErrorReporting.fst
-    EXTRACT         FStarC.SMTEncoding.Util.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.DeferredImplicits.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.PatternUtils.fst.checked.lax
-    LAXCHECK        FStarC.TypeChecker.NBETerm.fst
-    LAXCHECK        FStarC.TypeChecker.Primops.Base.fsti
-    LAXCHECK        FStarC.MachineInts.fsti
-    LAXCHECK        FStarC.Reflection.V2.NBEEmbeddings.fsti
-    LAXCHECK        FStarC.Reflection.V1.NBEEmbeddings.fsti
-    EXTRACT         FStarC.TypeChecker.TermEqAndSimplify.fst.checked.lax
-    EXTRACT         FStarC.SMTEncoding.Solver.Cache.fst.checked.lax
-    EXTRACT         FStarC.SMTEncoding.Env.fst.checked.lax
-    LAXCHECK        FStarC.SMTEncoding.EncodeTerm.fsti
-    LAXCHECK        FStarC.SMTEncoding.Encode.fsti
-    LAXCHECK        FStarC.CheckedFiles.fsti
-    EXTRACT         FStarC.Extraction.ML.UEnv.fst.checked.lax
- * Warning 328 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/extraction/FStarC.Extraction.ML.Code.fst(785,12-785,17):
-   - Local binding 'p_sig' is recursive but not used in its body
- 
- * Warning 328 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/extraction/FStarC.Extraction.Krml.fst(335,8-335,19):
-   - Global binding
-         'FStarC.Extraction.Krml.decl_to_doc'
-     is recursive but not used in its body
- 
- * Warning 328 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/extraction/FStarC.Extraction.Krml.fst(658,8-658,37):
-   - Global binding
-         'FStarC.Extraction.Krml.translate_type_without_decay''
-     is recursive but not used in its body
- 
- * Warning 328 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/extraction/FStarC.Extraction.Krml.fst(761,4-761,19):
-   - Global binding
-         'FStarC.Extraction.Krml.translate_type''
-     is recursive but not used in its body
- 
- * Warning 328 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/extraction/FStarC.Extraction.Krml.fst(778,4-778,19):
-   - Global binding
-         'FStarC.Extraction.Krml.translate_expr''
-     is recursive but not used in its body
- 
-    LAXCHECK        FStarC.Tactics.Types.Reflection.fst
-    EXTRACT         FStarC.Extraction.ML.Util.fst.checked.lax
-    LAXCHECK        FStarC.MachineInts.fst
-    LAXCHECK        FStarC.Reflection.V2.NBEEmbeddings.fst
-    LAXCHECK        FStarC.TypeChecker.Primops.Base.fst
-    LAXCHECK        FStarC.TypeChecker.Primops.Eq.fsti
-    LAXCHECK        FStarC.TypeChecker.Primops.Real.fsti
-    LAXCHECK        FStarC.TypeChecker.Primops.Range.fsti
-    LAXCHECK        FStarC.TypeChecker.Primops.Errors.Msg.fsti
-    LAXCHECK        FStarC.TypeChecker.Primops.MachineInts.fsti
-    LAXCHECK        FStarC.TypeChecker.Primops.Docs.fsti
-    LAXCHECK        FStarC.TypeChecker.Primops.Erased.fsti
-    LAXCHECK        FStarC.TypeChecker.Primops.Sealed.fsti
-    LAXCHECK        FStarC.TypeChecker.Primops.Array.fsti
-    LAXCHECK        FStarC.TypeChecker.Primops.Issue.fsti
-    LAXCHECK        FStarC.TypeChecker.Primops.fsti
-    LAXCHECK        FStarC.Tactics.V2.Primops.fsti
-    LAXCHECK        FStarC.Tactics.V1.Primops.fsti
-    LAXCHECK        FStarC.Reflection.V1.NBEEmbeddings.fst
-    EXTRACT         FStarC.SMTEncoding.ErrorReporting.fst.checked.lax
-    EXTRACT         FStarC.Extraction.ML.Code.fst.checked.lax
-    LAXCHECK        FStarC.CheckedFiles.fst
-    LAXCHECK        FStarC.Universal.fsti
-    LAXCHECK        FStarC.SMTEncoding.Solver.fst
-    EXTRACT         FStarC.Reflection.V2.Embeddings.fst.checked.lax
-    LAXCHECK        FStarC.TypeChecker.Primops.Array.fst
-    LAXCHECK        FStarC.TypeChecker.Primops.Range.fst
-    LAXCHECK        FStarC.TypeChecker.Primops.Sealed.fst
-    LAXCHECK        FStarC.TypeChecker.Primops.Erased.fst
-    EXTRACT         FStarC.MachineInts.fst.checked.lax
-    LAXCHECK        FStarC.TypeChecker.Primops.Real.fst
-    LAXCHECK        FStarC.TypeChecker.Primops.Docs.fst
-    LAXCHECK        FStarC.TypeChecker.Cfg.fsti
-    LAXCHECK        FStarC.Tactics.Types.fsti
-    LAXCHECK        FStarC.TypeChecker.Primops.Issue.fst
-    LAXCHECK        FStarC.TypeChecker.Primops.MachineInts.fst
-    LAXCHECK        FStarC.TypeChecker.Primops.Errors.Msg.fst
-    LAXCHECK        FStarC.TypeChecker.Primops.Eq.fst
-    LAXCHECK        FStarC.TypeChecker.Primops.fst
-    EXTRACT         FStarC.Tactics.Types.Reflection.fst.checked.lax
-    EXTRACT         FStarC.CheckedFiles.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Env.fst.checked.lax
-    EXTRACT         FStarC.Reflection.V1.Embeddings.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Primops.Docs.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.NBETerm.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Primops.Sealed.fst.checked.lax
-    LAXCHECK        FStarC.Tactics.Types.fst
-    LAXCHECK        FStarC.Tactics.Printing.fsti
-    LAXCHECK        FStarC.Tactics.Result.fsti
-    LAXCHECK        FStarC.Tactics.Native.fsti
-    EXTRACT         FStarC.TypeChecker.Primops.Eq.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Primops.Issue.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Primops.Array.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Primops.Errors.Msg.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Primops.Erased.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Primops.Real.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Primops.Range.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Primops.MachineInts.fst.checked.lax
-    LAXCHECK        FStarC.TypeChecker.Cfg.fst
-    LAXCHECK        FStarC.TypeChecker.Normalize.Unfolding.fsti
-    LAXCHECK        FStarC.TypeChecker.Normalize.fsti
-    LAXCHECK        FStarC.Reflection.V2.Interpreter.fst
-    LAXCHECK        FStarC.Reflection.V1.Interpreter.fst
-    EXTRACT         FStarC.Reflection.V1.NBEEmbeddings.fst.checked.lax
-    EXTRACT         FStarC.Reflection.V2.NBEEmbeddings.fst.checked.lax
-    LAXCHECK        FStarC.Interactive.Ide.Types.fsti
-    EXTRACT         FStarC.TypeChecker.Primops.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Primops.Base.fst.checked.lax
-    EXTRACT         FStarC.ToSyntax.ToSyntax.fst.checked.lax
-    LAXCHECK        FStarC.Tactics.Printing.fst
-    LAXCHECK        FStarC.Tactics.Result.fst
-    LAXCHECK        FStarC.Tactics.Embedding.fsti
-    LAXCHECK        FStarC.Tactics.Monad.fsti
-    EXTRACT         FStarC.Extraction.Krml.fst.checked.lax
-    LAXCHECK        FStarC.TypeChecker.Normalize.Unfolding.fst
-    EXTRACT         FStarC.Tactics.Types.fst.checked.lax
-    LAXCHECK        FStarC.TypeChecker.Normalize.fst
-    LAXCHECK        FStarC.TypeChecker.Rel.fst
-    LAXCHECK        FStarC.TypeChecker.Err.fst
-    LAXCHECK        FStarC.TypeChecker.Util.fst
-    LAXCHECK        FStarC.Reflection.V2.Builtins.fst
-    LAXCHECK        FStarC.SMTEncoding.EncodeTerm.fst
-    LAXCHECK        FStarC.SMTEncoding.Encode.fst
-    LAXCHECK        FStarC.TypeChecker.Generalize.fst
-    LAXCHECK        FStarC.TypeChecker.Positivity.fst
-    LAXCHECK        FStarC.TypeChecker.TcTerm.fst
-    LAXCHECK        FStarC.TypeChecker.TcInductive.fst
-    LAXCHECK        FStarC.TypeChecker.NBE.fsti
-    LAXCHECK        FStarC.TypeChecker.Quals.fst
-    LAXCHECK        FStarC.TypeChecker.Core.fst
-    LAXCHECK        FStarC.TypeChecker.DMFF.fst
-    LAXCHECK        FStarC.TypeChecker.TcEffect.fst
-    LAXCHECK        FStarC.TypeChecker.Tc.fst
-    LAXCHECK        FStarC.Extraction.ML.Term.fst
-    LAXCHECK        FStarC.Extraction.ML.Modul.fst
-    LAXCHECK        FStarC.Reflection.V1.Builtins.fst
-    LAXCHECK        FStarC.Interactive.Legacy.fst
-    EXTRACT         FStarC.Tactics.Result.fst.checked.lax
-    EXTRACT         FStarC.SMTEncoding.Solver.fst.checked.lax
-    EXTRACT         FStarC.Tactics.Printing.fst.checked.lax
-    EXTRACT         FStarC.Reflection.V1.Interpreter.fst.checked.lax
- * Warning 337 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/typechecker/FStarC.TypeChecker.Err.fst(132,30-132,31):
-   - The operator '@' has been resolved to FStar.List.Tot.append even though
-     FStar.List.Tot is not in scope. Please add an 'open FStar.List.Tot' to stop
-     relying on this deprecated, special treatment of '@'.
- 
- * Warning 337 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/typechecker/FStarC.TypeChecker.Err.fst(141,29-141,30):
-   - The operator '@' has been resolved to FStar.List.Tot.append even though
-     FStar.List.Tot is not in scope. Please add an 'open FStar.List.Tot' to stop
-     relying on this deprecated, special treatment of '@'.
- 
-    LAXCHECK        FStarC.TypeChecker.NBE.fst
-    EXTRACT         FStarC.Reflection.V2.Interpreter.fst.checked.lax
-    LAXCHECK        FStarC.Tactics.Embedding.fst
-    LAXCHECK        FStarC.Tactics.Monad.fst
-    LAXCHECK        FStarC.Tactics.InterpFuns.fsti
-    LAXCHECK        FStarC.Tactics.Interpreter.fsti
-    LAXCHECK        FStarC.Tactics.CtrlRewrite.fsti
-    LAXCHECK        FStarC.Tactics.V2.Basic.fsti
-    LAXCHECK        FStarC.Tactics.V1.Basic.fsti
-    EXTRACT         FStarC.TypeChecker.Cfg.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Normalize.Unfolding.fst.checked.lax
-    LAXCHECK        FStarC.Interactive.Ide.Types.fst
-    LAXCHECK        FStarC.Interactive.PushHelper.fsti
-    LAXCHECK        FStarC.Interactive.QueryHelper.fsti
-    LAXCHECK        FStarC.Interactive.Incremental.fsti
- * Warning 328 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/extraction/FStarC.Extraction.ML.Term.fst(713,8-713,31):
-   - Global binding
-         'FStarC.Extraction.ML.Term.translate_term_to_mlty''
-     is recursive but not used in its body
- 
- * Warning 328 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/extraction/FStarC.Extraction.ML.Term.fst(1346,4-1346,20):
-   - Global binding
-         'FStarC.Extraction.ML.Term.extract_lb_iface'
-     is recursive but not used in its body
- 
- * Warning 328 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/extraction/FStarC.Extraction.ML.Term.fst(1392,4-1392,19):
-   - Global binding
-         'FStarC.Extraction.ML.Term.term_as_mlexpr''
-     is recursive but not used in its body
- 
-    EXTRACT         FStarC.TypeChecker.Err.fst.checked.lax
- * Warning 319 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/typechecker/FStarC.TypeChecker.Generalize.fst(264,9-264,54):
-   - Effectful argument FStarC.List.for_all (fun _ ->
-           (let l, _, _ = _ in
-             Inr? l)
-           <:
-           Prims.bool)
-       lecs (FStarC.Effect.ALL) to erased function assert, consider let binding it
- 
-    EXTRACT         FStarC.TypeChecker.Quals.fst.checked.lax
-    EXTRACT         FStarC.Reflection.V2.Builtins.fst.checked.lax
-    EXTRACT         FStarC.Reflection.V1.Builtins.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Generalize.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Positivity.fst.checked.lax
-    LAXCHECK        FStarC.Tactics.CtrlRewrite.fst
-    LAXCHECK        FStarC.Tactics.Interpreter.fst
-    LAXCHECK        FStarC.Universal.fst
-    LAXCHECK        FStarC.Hooks.fst
-    LAXCHECK        FStarC.Main.fst
-    LAXCHECK        FStarC.Tactics.V1.Basic.fst
-    LAXCHECK        FStarC.Tactics.InterpFuns.fst
-    LAXCHECK        FStarC.Tactics.V1.Primops.fst
-    LAXCHECK        FStarC.Extraction.ML.RegEmb.fst
-    EXTRACT         FStarC.Interactive.Legacy.fst.checked.lax
-    LAXCHECK        FStarC.Tactics.V2.Basic.fst
-    LAXCHECK        FStarC.Tactics.Hooks.fst
-    LAXCHECK        FStarC.Tactics.V2.Primops.fst
-    EXTRACT         FStarC.TypeChecker.TcInductive.fst.checked.lax
-    EXTRACT         FStarC.Tactics.Embedding.fst.checked.lax
-    EXTRACT         FStarC.Tactics.Monad.fst.checked.lax
-    EXTRACT         FStarC.Extraction.ML.Modul.fst.checked.lax
-    LAXCHECK        FStarC.Interactive.QueryHelper.fst
-    LAXCHECK        FStarC.Interactive.PushHelper.fst
-    LAXCHECK        FStarC.Interactive.Incremental.fst
-    LAXCHECK        FStarC.Interactive.Ide.fst
-    LAXCHECK        FStarC.Interactive.Lsp.fst
-    EXTRACT         FStarC.Interactive.Ide.Types.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.NBE.fst.checked.lax
-    EXTRACT         FStarC.SMTEncoding.EncodeTerm.fst.checked.lax
-    EXTRACT         FStarC.Extraction.ML.Term.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Core.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.DMFF.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Tc.fst.checked.lax
-    EXTRACT         FStarC.Hooks.fst.checked.lax
-    EXTRACT         FStarC.Tactics.CtrlRewrite.fst.checked.lax
-    EXTRACT         FStarC.Tactics.Interpreter.fst.checked.lax
-    EXTRACT         FStarC.SMTEncoding.Encode.fst.checked.lax
-    EXTRACT         FStarC.Extraction.ML.RegEmb.fst.checked.lax
-    EXTRACT         FStarC.Universal.fst.checked.lax
-    EXTRACT         FStarC.Interactive.Lsp.fst.checked.lax
-    EXTRACT         FStarC.Interactive.QueryHelper.fst.checked.lax
- * Warning 319 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/src/interactive/FStarC.Interactive.Ide.fst(152,13-152,53):
-   - Effectful argument let _ =
-       let _ =
-         let _ =
-           let _ = !FStarC.Interactive.PushHelper.repl_stack in
-           FStarC.List.hd _
-         in
-         FStar.Pervasives.Native.snd _
-       in
-       FStar.Pervasives.Native.fst _
-     in
-     task = _ (FStarC.Effect.ALL) to erased function assert, consider let binding it
- 
-    EXTRACT         FStarC.Interactive.PushHelper.fst.checked.lax
-    EXTRACT         FStarC.Tactics.V1.Primops.fst.checked.lax
-    EXTRACT         FStarC.Interactive.Incremental.fst.checked.lax
-    EXTRACT         FStarC.Main.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Util.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.TcEffect.fst.checked.lax
-    EXTRACT         FStarC.Interactive.Ide.fst.checked.lax
-    EXTRACT         FStarC.Tactics.Hooks.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Normalize.fst.checked.lax
-    EXTRACT         FStarC.Tactics.V1.Basic.fst.checked.lax
-    EXTRACT         FStarC.Tactics.V2.Primops.fst.checked.lax
-    EXTRACT         FStarC.Tactics.InterpFuns.fst.checked.lax
-    EXTRACT         FStarC.Tactics.V2.Basic.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.TcTerm.fst.checked.lax
-    EXTRACT         FStarC.TypeChecker.Rel.fst.checked.lax
-   BUILD            STAGE 2 FSTARC-BARE
- (cd _build/.sandbox/78c76d38d5e1f0558a58c4998a2ff617/default && /home/opam/.opam/4.14/bin/menhir fstar-guts/FStarC_Parser_Parse.mly --base fstar-guts/FStarC_Parser_Parse --infer-write-query fstar-guts/FStarC_Parser_Parse__mock.ml.mock)
- File "fstar-guts/FStarC_Parser_Parse.mly", line 129, characters 60-70:
- Warning: the token LBRACK_BAR is unused.
- File "fstar-guts/FStarC_Parser_Parse.mly", line 325, characters 0-15:
- Warning: symbol decoratableDecl is unreachable from any of the start symbol(s).
- File "fstar-guts/FStarC_Parser_Parse.mly", line 308, characters 0-16:
- Warning: symbol noDecorationDecl is unreachable from any of the start symbol(s).
- (cd _build/.sandbox/9d8b8c8f641dab327b6ed24270fc9673/default && /home/opam/.opam/4.14/bin/menhir fstar-guts/FStarC_Parser_Parse.mly --base fstar-guts/FStarC_Parser_Parse --infer-read-reply fstar-guts/FStarC_Parser_Parse__mock.mli.inferred)
- Warning: 20 states have shift/reduce conflicts.
- Warning: 301 shift/reduce conflicts were arbitrarily resolved.
- Warning: 232 end-of-stream conflicts were arbitrarily resolved.
-   EXTRACT          STAGE 2 PLUGINS
-    DEPEND          /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib
-    LAXCHECK        Prims.fst
-    LAXCHECK        FStar.NormSteps.fsti
-    LAXCHECK        FStar.Pervasives.Native.fst
-    LAXCHECK        FStar.Attributes.fsti
-    LAXCHECK        FStar.NormSteps.fst
-    EXTRACT         FStar.NormSteps.fst.checked.lax
-    LAXCHECK        FStar.Pervasives.fsti
-    LAXCHECK        FStar.Pervasives.fst
-    LAXCHECK        FStar.Prelude.fsti
-    LAXCHECK        FStar.Ghost.fsti
-    LAXCHECK        FStar.Squash.fsti
-    LAXCHECK        FStar.Classical.Sugar.fsti
-    LAXCHECK        FStar.Mul.fst
-    LAXCHECK        FStar.Classical.fsti
-    LAXCHECK        FStar.Preorder.fst
-    LAXCHECK        FStar.Sealed.fsti
-    LAXCHECK        FStar.Float.fsti
-    LAXCHECK        FStar.Monotonic.Pure.fst
-    LAXCHECK        FStar.Stubs.VConfig.fsti
-    LAXCHECK        FStar.Order.fst
-    LAXCHECK        FStar.Reflection.Const.fst
-    LAXCHECK        FStar.Stubs.TypeChecker.Core.fsti
-    LAXCHECK        FStar.FunctionalExtensionality.fsti
-    LAXCHECK        FStar.Set.fsti
-    LAXCHECK        FStar.PropositionalExtensionality.fst
-    LAXCHECK        FStar.Exn.fst
-    LAXCHECK        FStar.Tactics.Logic.Lemmas.fsti
-    LAXCHECK        FStar.Bijection.fsti
-    EXTRACT         FStar.Preorder.fst.checked.lax
-    LAXCHECK        FStar.Monotonic.Witnessed.fsti
-    LAXCHECK        FStar.Tactics.Canon.Lemmas.fsti
-    EXTRACT         FStar.Mul.fst.checked.lax
-    LAXCHECK        FStar.Range.fsti
-    LAXCHECK        FStar.Math.Lib.fst
-    LAXCHECK        FStar.Math.Lemmas.fsti
-    LAXCHECK        FStar.Sealed.Inhabited.fst
-    EXTRACT         FStar.PropositionalExtensionality.fst.checked.lax
-    EXTRACT         FStar.Monotonic.Pure.fst.checked.lax
-    LAXCHECK        FStar.Classical.Sugar.fst
-    LAXCHECK        FStar.List.Tot.Base.fst
-    LAXCHECK        FStar.Algebra.CommMonoid.Equiv.fst
-    EXTRACT         FStar.Order.fst.checked.lax
-    LAXCHECK        FStar.IndefiniteDescription.fsti
-    LAXCHECK        FStar.ErasedLogic.fst
-    EXTRACT         FStar.Reflection.Const.fst.checked.lax
-    LAXCHECK        FStar.Calc.fsti
-    LAXCHECK        FStar.Stubs.Reflection.Types.fsti
-    LAXCHECK        FStar.Classical.fst
-    LAXCHECK        FStar.Bijection.fst
-    EXTRACT         FStar.Sealed.Inhabited.fst.checked.lax
-    LAXCHECK        FStar.Tactics.Canon.Lemmas.fst
-    LAXCHECK        FStar.Monotonic.Witnessed.fst
-    EXTRACT         FStar.ErasedLogic.fst.checked.lax
-    LAXCHECK        FStar.IndefiniteDescription.fst
-    LAXCHECK        FStar.Squash.fst
-    LAXCHECK        FStar.StrongExcludedMiddle.fst
-    LAXCHECK        FStar.Tactics.Logic.Lemmas.fst
-    LAXCHECK        FStar.PredicateExtensionality.fst
-    LAXCHECK        FStar.Set.fst
-    LAXCHECK        FStar.TSet.fsti
-    LAXCHECK        FStar.Stubs.Syntax.Syntax.fsti
-    LAXCHECK        FStar.Stubs.Tactics.Types.Reflection.fsti
-    LAXCHECK        FStar.Reflection.TermEq.Simple.fsti
-    EXTRACT         FStar.Classical.Sugar.fst.checked.lax
-    EXTRACT         FStar.Math.Lib.fst.checked.lax
-    LAXCHECK        FStar.Calc.fst
-    EXTRACT         FStar.StrongExcludedMiddle.fst.checked.lax
-    EXTRACT         FStar.Pervasives.fst.checked.lax
-    EXTRACT         FStar.Squash.fst.checked.lax
-    EXTRACT         FStar.Tactics.Canon.Lemmas.fst.checked.lax
-    EXTRACT         FStar.IndefiniteDescription.fst.checked.lax
-    EXTRACT         FStar.Bijection.fst.checked.lax
-    EXTRACT         FStar.Algebra.CommMonoid.Equiv.fst.checked.lax
-    LAXCHECK        FStar.Stubs.Reflection.V2.Data.fsti
-    LAXCHECK        FStar.Math.Lemmas.fst
-    EXTRACT         FStar.Tactics.Logic.Lemmas.fst.checked.lax
-    EXTRACT         FStar.Monotonic.Witnessed.fst.checked.lax
-    EXTRACT         FStar.PredicateExtensionality.fst.checked.lax
-    EXTRACT         FStar.Classical.fst.checked.lax
-    LAXCHECK        FStar.List.Tot.Properties.fsti
-    LAXCHECK        FStar.Seq.Base.fsti
-    LAXCHECK        FStar.Tactics.CanonCommSwaps.fst
-    LAXCHECK        FStar.Monotonic.Heap.fsti
-    EXTRACT         FStar.Calc.fst.checked.lax
-    EXTRACT         FStar.Set.fst.checked.lax
-    LAXCHECK        FStar.Stubs.Reflection.V2.Builtins.fsti
-    LAXCHECK        FStar.Reflection.V2.Compare.fsti
-    LAXCHECK        FStar.BitVector.fsti
-    EXTRACT         FStar.Tactics.CanonCommSwaps.fst.checked.lax
-    LAXCHECK        FStar.Reflection.V1.Compare.fsti
-    LAXCHECK        FStar.Reflection.V2.Collect.fst
-    LAXCHECK        FStar.Reflection.TermEq.fsti
-    LAXCHECK        FStar.Stubs.Reflection.V1.Data.fsti
-    LAXCHECK        FStar.Heap.fst
-    LAXCHECK        FStar.List.Tot.Properties.fst
-    LAXCHECK        FStar.List.Tot.fst
-    EXTRACT         FStar.Reflection.V2.Collect.fst.checked.lax
-    LAXCHECK        FStar.UInt.fsti
-    LAXCHECK        FStar.Reflection.TermEq.Simple.fst
-    LAXCHECK        FStar.Seq.Base.fst
-    LAXCHECK        FStar.Seq.Properties.fsti
-    LAXCHECK        FStar.Reflection.V2.Derived.Lemmas.fst
-    LAXCHECK        FStar.Reflection.V2.Derived.fst
-    LAXCHECK        FStar.Reflection.TermEq.fst
-    LAXCHECK        FStar.ST.fst
-    LAXCHECK        FStar.Stubs.Reflection.V1.Builtins.fsti
-    EXTRACT         FStar.Reflection.TermEq.Simple.fst.checked.lax
-    EXTRACT         FStar.Reflection.V2.Derived.fst.checked.lax
-    EXTRACT         FStar.Reflection.V2.Derived.Lemmas.fst.checked.lax
-    LAXCHECK        FStar.Reflection.V2.Compare.fst
-    LAXCHECK        FStar.Reflection.V2.fst
-    LAXCHECK        FStar.Reflection.V1.Derived.fst
-    LAXCHECK        FStar.All.fsti
- * Warning 271 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.UInt.fsti(436,8-436,51):
-   - Pattern uses these theory symbols or terms that should not be in an SMT
-     pattern:
-       Prims.op_Subtraction
- 
-    EXTRACT         FStar.Reflection.V2.fst.checked.lax
-    LAXCHECK        FStar.UInt32.fsti
-    EXTRACT         FStar.Reflection.V1.Derived.fst.checked.lax
-    LAXCHECK        FStar.Reflection.V1.Derived.Lemmas.fst
-    LAXCHECK        FStar.List.fst
-    EXTRACT         FStar.Reflection.V2.Compare.fst.checked.lax
-    EXTRACT         FStar.Math.Lemmas.fst.checked.lax
-    EXTRACT         FStar.Seq.Base.fst.checked.lax
-    LAXCHECK        FStar.Char.fsti
-    EXTRACT         FStar.Reflection.V1.Derived.Lemmas.fst.checked.lax
-    LAXCHECK        FStar.Reflection.V1.fst
-    LAXCHECK        FStar.Seq.Properties.fst
-    LAXCHECK        FStar.Seq.fst
-    LAXCHECK        FStar.Pprint.fsti
-    LAXCHECK        FStar.BV.fsti
-    LAXCHECK        FStar.String.fsti
-    EXTRACT         FStar.Seq.fst.checked.lax
-    LAXCHECK        FStar.BitVector.fst
-    LAXCHECK        FStar.UInt.fst
-    EXTRACT         FStar.Reflection.V1.fst.checked.lax
-    LAXCHECK        FStar.Issue.fsti
-    LAXCHECK        FStar.Stubs.Errors.Msg.fsti
-    LAXCHECK        FStar.BV.fst
-    LAXCHECK        FStar.Tactics.BV.Lemmas.fsti
-    EXTRACT         FStar.List.Tot.Properties.fst.checked.lax
-    LAXCHECK        FStar.Stubs.Tactics.Common.fsti
-    EXTRACT         FStar.BitVector.fst.checked.lax
-    LAXCHECK        FStar.Stubs.Tactics.Types.fsti
-    LAXCHECK        FStar.Tactics.BV.Lemmas.fst
-    EXTRACT         FStar.Reflection.TermEq.fst.checked.lax
-    LAXCHECK        FStar.Stubs.Tactics.Result.fsti
-    EXTRACT         FStar.BV.fst.checked.lax
- * Warning 271 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.UInt.fsti(436,8-436,51):
-   - Pattern uses these theory symbols or terms that should not be in an SMT
-     pattern:
-       Prims.op_Subtraction
- 
- * Warning 271 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.UInt.fst(293,8-293,25):
-   - Pattern uses these theory symbols or terms that should not be in an SMT
-     pattern:
-       Prims.op_Subtraction
-   - See also /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.UInt.fsti(436,8-436,51)
- 
-    LAXCHECK        FStar.Tactics.Effect.fsti
-    EXTRACT         FStar.Tactics.BV.Lemmas.fst.checked.lax
-    LAXCHECK        FStar.Tactics.Effect.fst
-    LAXCHECK        FStar.Tactics.Util.fst
-    LAXCHECK        FStar.Tactics.NamedView.fsti
-    LAXCHECK        FStar.Stubs.Tactics.Unseal.fsti
-    LAXCHECK        FStar.Tactics.Names.fsti
-    LAXCHECK        FStar.Tactics.SMT.fsti
-    LAXCHECK        FStar.Tactics.Print.fsti
-    LAXCHECK        FStar.Tactics.MApply0.fsti
-    LAXCHECK        FStar.Tactics.BV.fsti
-    LAXCHECK        FStar.Tactics.Canon.fsti
-    LAXCHECK        FStar.Tactics.Typeclasses.fsti
-    LAXCHECK        FStar.Tactics.MkProjectors.fsti
-    LAXCHECK        FStar.Tactics.LaxTermEq.fsti
-    LAXCHECK        FStar.Tactics.Easy.fsti
-    LAXCHECK        FStar.Tactics.Parametricity.fsti
-    LAXCHECK        FStar.Stubs.Tactics.V2.Builtins.fsti
-    LAXCHECK        FStar.Stubs.Tactics.V1.Builtins.fsti
-    EXTRACT         FStar.UInt.fst.checked.lax
-    EXTRACT         FStar.Tactics.Effect.fst.checked.lax
-    EXTRACT         FStar.Tactics.Util.fst.checked.lax
-    LAXCHECK        FStar.Tactics.Visit.fst
-    LAXCHECK        FStar.Tactics.V2.SyntaxHelpers.fsti
-    LAXCHECK        FStar.Tactics.V1.SyntaxHelpers.fst
-    LAXCHECK        FStar.Reflection.V1.Formula.fst
-    EXTRACT         FStar.Seq.Properties.fst.checked.lax
-    LAXCHECK        FStar.Tactics.NamedView.fst
-    LAXCHECK        FStar.FunctionalExtensionality.fst
-    LAXCHECK        FStar.Tactics.SMT.fst
-    LAXCHECK        FStar.Tactics.V2.SyntaxCoercions.fst
-    LAXCHECK        FStar.Reflection.V2.Formula.fst
-    LAXCHECK        FStar.Tactics.LaxTermEq.fst
-    EXTRACT         FStar.Tactics.Visit.fst.checked.lax
-    LAXCHECK        FStar.Tactics.Names.fst
-    LAXCHECK        FStar.Tactics.V2.SyntaxHelpers.fst
-    EXTRACT         FStar.Tactics.V2.SyntaxCoercions.fst.checked.lax
-    EXTRACT         FStar.Tactics.SMT.fst.checked.lax
-    EXTRACT         FStar.Tactics.V1.SyntaxHelpers.fst.checked.lax
-    EXTRACT         FStar.FunctionalExtensionality.fst.checked.lax
-    EXTRACT         FStar.Tactics.LaxTermEq.fst.checked.lax
-    EXTRACT         FStar.Reflection.V1.Formula.fst.checked.lax
-    LAXCHECK        FStar.Tactics.V1.Derived.fst
-    LAXCHECK        FStar.Tactics.V1.Logic.fsti
-    EXTRACT         FStar.Tactics.Names.fst.checked.lax
-    EXTRACT         FStar.Reflection.V2.Formula.fst.checked.lax
-    LAXCHECK        FStar.Tactics.V2.Derived.fst
-    LAXCHECK        FStar.Tactics.V2.Logic.fsti
-    EXTRACT         FStar.Tactics.V2.SyntaxHelpers.fst.checked.lax
-    EXTRACT         FStar.Tactics.NamedView.fst.checked.lax
-    EXTRACT         FStar.Tactics.V1.Derived.fst.checked.lax
-    LAXCHECK        FStar.Tactics.V1.Logic.fst
-    EXTRACT         FStar.Tactics.V2.Derived.fst.checked.lax
-    LAXCHECK        FStar.Tactics.Print.fst
-    LAXCHECK        FStar.Tactics.V2.Logic.fst
-    LAXCHECK        FStar.Tactics.V2.Bare.fsti
-    LAXCHECK        FStar.Tactics.MApply0.fst
-    LAXCHECK        FStar.Tactics.MkProjectors.fst
-    LAXCHECK        FStar.Tactics.Typeclasses.fst
-    LAXCHECK        FStar.Reflection.V2.Arith.fst
-    LAXCHECK        FStar.Tactics.TypeRepr.fsti
-    LAXCHECK        FStar.Tactics.PrettifyType.fsti
-    LAXCHECK        FStar.Tactics.CheckLN.fsti
-    LAXCHECK        FStar.Tactics.CanonCommMonoidSimple.Equiv.fst
-    LAXCHECK        FStar.Tactics.Easy.fst
-    LAXCHECK        FStar.Tactics.Parametricity.fst
-    EXTRACT         FStar.Tactics.MApply0.fst.checked.lax
-    EXTRACT         FStar.Tactics.V1.Logic.fst.checked.lax
-    EXTRACT         FStar.Tactics.Print.fst.checked.lax
-    EXTRACT         FStar.Tactics.V2.Logic.fst.checked.lax
-    EXTRACT         FStar.Tactics.MkProjectors.fst.checked.lax
-    LAXCHECK        FStar.Tactics.CheckLN.fst
-    LAXCHECK        FStar.Tactics.TypeRepr.fst
-    EXTRACT         FStar.Tactics.Easy.fst.checked.lax
-    LAXCHECK        FStar.Tactics.PrettifyType.fst
-    EXTRACT         FStar.Reflection.V2.Arith.fst.checked.lax
-    LAXCHECK        FStar.Tactics.BV.fst
-    LAXCHECK        FStar.Tactics.Canon.fst
-    EXTRACT         FStar.Tactics.CheckLN.fst.checked.lax
-    EXTRACT         FStar.Tactics.Typeclasses.fst.checked.lax
-    EXTRACT         FStar.Tactics.TypeRepr.fst.checked.lax
-    EXTRACT         FStar.Tactics.Parametricity.fst.checked.lax
-    EXTRACT         FStar.Tactics.CanonCommMonoidSimple.Equiv.fst.checked.lax
-    EXTRACT         FStar.Tactics.Canon.fst.checked.lax
-    EXTRACT         FStar.Tactics.BV.fst.checked.lax
-    EXTRACT         FStar.Tactics.PrettifyType.fst.checked.lax
-   BUILD            STAGE 2 FSTARC
-   EXTRACT          STAGE 2 LIB
-    DEPEND          /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib
-    CHECK           Prims.fst
-    CHECK           FStar.NormSteps.fsti
-    CHECK           FStar.Pervasives.Native.fst
-    CHECK           FStar.Attributes.fsti
-    CHECK           FStar.NormSteps.fst
-    EXTRACT         FStar.NormSteps.fst.checked
-    CHECK           FStar.Pervasives.fsti
-    CHECK           FStar.Prelude.fsti
-    CHECK           FStar.Pervasives.fst
-    CHECK           FStar.Mul.fst
-    CHECK           FStar.Ghost.fsti
-    CHECK           FStar.Squash.fsti
-    CHECK           FStar.Classical.fsti
-    CHECK           FStar.Classical.Sugar.fsti
-    CHECK           FStar.Preorder.fst
-    CHECK           FStar.Sealed.fsti
-    CHECK           FStar.Monotonic.Pure.fst
-    CHECK           FStar.Order.fst
-    CHECK           FStar.PropositionalExtensionality.fst
-    CHECK           FStar.FunctionalExtensionality.fsti
-    CHECK           FStar.Float.fsti
-    CHECK           FStar.Stubs.TypeChecker.Core.fsti
-    CHECK           FStar.Stubs.VConfig.fsti
-    CHECK           FStar.Reflection.Const.fst
-    CHECK           FStar.Tactics.Logic.Lemmas.fsti
-    CHECK           FStar.Set.fsti
-    CHECK           FStar.Exn.fst
-    CHECK           FStar.Universe.fsti
-    CHECK           FStar.Functions.fsti
-    CHECK           FStar.Bijection.fsti
-    CHECK           FStar.DependentMap.fsti
-    CHECK           FStar.PartialMap.fsti
-    CHECK           FStar.MarkovsPrinciple.fst
-    CHECK           FStar.Sequence.Base.fsti
-    CHECK           FStar.ReflexiveTransitiveClosure.fsti
-    CHECK           FStar.Constructive.fst
-    CHECK           FStar.RefinementExtensionality.fsti
-    CHECK           FStar.Real.fsti
-    CHECK           FStar.Parse.fst
-    CHECK           FStar.Dyn.fsti
-    CHECK           FStar.ImmutableArray.Base.fsti
-    CHECK           FStar.Exception.fsti
-    CHECK           FStar.Date.fsti
-    EXTRACT         FStar.Mul.fst.checked
-    CHECK           FStar.Math.Lemmas.fsti
-    CHECK           FStar.Math.Lib.fst
-    CHECK           FStar.Algebra.CommMonoid.fst
-    CHECK           FStar.Math.Euclid.fsti
-    CHECK           FStar.Tactics.Canon.Lemmas.fsti
-    CHECK           FStar.Range.fsti
-    CHECK           FStar.Sealed.Inhabited.fst
-    EXTRACT         FStar.PropositionalExtensionality.fst.checked
-    EXTRACT         FStar.Preorder.fst.checked
-    CHECK           FStar.Monotonic.Witnessed.fsti
-    EXTRACT         FStar.MarkovsPrinciple.fst.checked
-    CHECK           FStar.Witnessed.Core.fsti
-    EXTRACT         FStar.Parse.fst.checked
-    CHECK           FStar.Dyn.fst
-    CHECK           FStar.Real.Old.fsti
-    CHECK           FStar.Universe.fst
-    EXTRACT         FStar.Monotonic.Pure.fst.checked
-    CHECK           FStar.Classical.Sugar.fst
-    CHECK           FStar.List.Tot.Base.fst
-    CHECK           FStar.Algebra.CommMonoid.Equiv.fst
-    CHECK           FStar.Cardinality.Cantor.fsti
-    EXTRACT         FStar.Order.fst.checked
-    CHECK           FStar.IndefiniteDescription.fsti
-    CHECK           FStar.ErasedLogic.fst
-    CHECK           FStar.IFC.fsti
-    CHECK           FStar.Ghost.fst
-    CHECK           FStar.SquashProperties.fst
-    CHECK           FStar.Calc.fsti
-    CHECK           FStar.Stubs.Reflection.Types.fsti
-    CHECK           FStar.Classical.fst
-    CHECK           FStar.PCM.fst
-    CHECK           FStar.Algebra.Monoid.fst
-    CHECK           FStar.Witnessed.Core.fst
-    CHECK           FStar.MSTTotal.fst
-    CHECK           FStar.PredicateExtensionality.fst
-    CHECK           FStar.PartialMap.fst
-    CHECK           FStar.Tactics.Canon.Lemmas.fst
-    CHECK           FStar.Set.fst
-    CHECK           FStar.Map.fsti
-    CHECK           FStar.TSet.fsti
-    CHECK           FStar.GSet.fsti
-    CHECK           FStar.GhostSet.fsti
-    CHECK           FStar.Monotonic.Witnessed.fst
-    EXTRACT         FStar.Universe.fst.checked
-    CHECK           FStar.DependentMap.fst
-    CHECK           FStar.Cardinality.Cantor.fst
-    CHECK           FStar.Cardinality.Universes.fsti
-    CHECK           FStar.Bijection.fst
-    EXTRACT         FStar.Algebra.CommMonoid.fst.checked
-    CHECK           FStar.Squash.fst
-    CHECK           FStar.IndefiniteDescription.fst
-    CHECK           FStar.StrongExcludedMiddle.fst
-    CHECK           FStar.WellFounded.fst
-    CHECK           FStar.Tactics.Logic.Lemmas.fst
-    EXTRACT         FStar.ErasedLogic.fst.checked
-    CHECK           FStar.Stubs.Tactics.Types.Reflection.fsti
-    CHECK           FStar.Stubs.Syntax.Syntax.fsti
-    CHECK           FStar.Reflection.TermEq.Simple.fsti
-    CHECK           FStar.ExtractAs.fst
-    EXTRACT         FStar.Math.Lib.fst.checked
-    EXTRACT         FStar.Witnessed.Core.fst.checked
-    CHECK           FStar.IFC.fst
-    CHECK           FStar.Calc.fst
-    EXTRACT         FStar.Classical.Sugar.fst.checked
-    CHECK           FStar.Math.Fermat.fsti
-    CHECK           FStar.Cardinality.Universes.fst
-    EXTRACT         FStar.SquashProperties.fst.checked
-    EXTRACT         FStar.Pervasives.fst.checked
-    EXTRACT         FStar.PredicateExtensionality.fst.checked
-    CHECK           FStar.RefinementExtensionality.fst
-    EXTRACT         FStar.StrongExcludedMiddle.fst.checked
-    CHECK           FStar.Functions.fst
-    CHECK           FStar.Real.Old.fst
-    EXTRACT         FStar.ExtractAs.fst.checked
-    EXTRACT         FStar.Cardinality.Cantor.fst.checked
-    EXTRACT         FStar.Squash.fst.checked
-    EXTRACT         FStar.IndefiniteDescription.fst.checked
-    EXTRACT         FStar.PartialMap.fst.checked
-    CHECK           FStar.Stubs.Reflection.V2.Data.fsti
-    CHECK           FStar.NMSTTotal.fst
-    CHECK           FStar.MST.fst
-    CHECK           FStar.Monotonic.Heap.fsti
-    CHECK           FStar.TSet.fst
-    CHECK           FStar.GhostSet.fst
- * Warning 242 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.WellFounded.fst(122,0-131,33):
-   - Definitions of inner let-rec aux and its enclosing top-level letbinding are
-     not encoded to the solver, you will only be able to reason with their types
-   - Also see: /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.WellFounded.fst(86,12-86,15)
- 
-    CHECK           FStar.GSet.fst
- * Warning 242 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.WellFounded.fst(122,0-131,33):
-   - Definitions of inner let-rec aux and its enclosing top-level letbinding are
-     not encoded to the solver, you will only be able to reason with their types
-   - Also see: /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.WellFounded.fst(126,12-126,15)
- 
-    CHECK           FStar.Sequence.Util.fst
-    CHECK           FStar.Sequence.Ambient.fst
-    EXTRACT         FStar.WellFounded.fst.checked
-    CHECK           FStar.WellFounded.Util.fsti
-    CHECK           FStar.LexicographicOrdering.fsti
-    CHECK           FStar.WellFoundedRelation.fsti
-    CHECK           FStar.Map.fst
-    EXTRACT         FStar.Set.fst.checked
-    EXTRACT         FStar.Algebra.CommMonoid.Equiv.fst.checked
-    EXTRACT         FStar.Monotonic.Witnessed.fst.checked
-    EXTRACT         FStar.IFC.fst.checked
-    EXTRACT         FStar.Bijection.fst.checked
-    EXTRACT         FStar.Cardinality.Universes.fst.checked
-    EXTRACT         FStar.Algebra.Monoid.fst.checked
-    EXTRACT         FStar.Classical.fst.checked
-    EXTRACT         FStar.Real.Old.fst.checked
-    EXTRACT         FStar.Functions.fst.checked
-    CHECK           FStar.Math.Lemmas.fst
-    EXTRACT         FStar.RefinementExtensionality.fst.checked
-    EXTRACT         FStar.DependentMap.fst.checked
-    EXTRACT         FStar.PCM.fst.checked
-    CHECK           FStar.Universe.PCM.fst
-    EXTRACT         FStar.Sequence.Ambient.fst.checked
-    CHECK           FStar.Sequence.fst
-    EXTRACT         FStar.Calc.fst.checked
- * Warning 318 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.GhostSet.fst(23,4-23,7):
-   - Values of type `set` cannot be erased during extraction, but the
-     `must_erase_for_extraction` attribute claims that it can.
-   - Please remove the attribute.
- 
- * Warning 318 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.TSet.fst(26,4-26,7):
-   - Values of type `set` cannot be erased during extraction, but the
-     `must_erase_for_extraction` attribute claims that it can.
-   - Please remove the attribute.
- 
- * Warning 318 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.GSet.fst(23,4-23,7):
-   - Values of type `set` cannot be erased during extraction, but the
-     `must_erase_for_extraction` attribute claims that it can.
-   - Please remove the attribute.
- 
- * Warning 330 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/experimental/FStar.MST.fst(222,43-222,55):
-   - Polymonadic binds ((DIV, MSTATE) |> MSTATE) in this case) is an experimental
-     feature;it is subject to some redesign in the future. Please keep us
-     informed (on github etc.) about how you are using it
- 
- * Warning 330 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/experimental/FStar.MST.fst(222,43-222,55):
-   - Polymonadic binds ((DIV, MSTATE) |> MSTATE) in this case) is an experimental
-     feature;it is subject to some redesign in the future. Please keep us
-     informed (on github etc.) about how you are using it
- 
-    EXTRACT         FStar.Sequence.Util.fst.checked
- * Warning 352 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/experimental/FStar.MST.fst(247,42-247,60):
-   - Combinator FStar.MSTTotal.MSTATETOT ~> FStar.MST.MSTATE is not a
-     substitutive indexed effect combinator, it is better to make it one if
-     possible for better performance and ease of use
- 
-    EXTRACT         FStar.GhostSet.fst.checked
-    EXTRACT         FStar.GSet.fst.checked
-    EXTRACT         FStar.Sequence.fst.checked
-    CHECK           FStar.Sequence.Permutation.fsti
-    CHECK           FStar.List.Tot.Properties.fsti
-    CHECK           FStar.Seq.Base.fsti
-    CHECK           FStar.BigOps.fsti
-    CHECK           FStar.List.Pure.Base.fst
-    CHECK           FStar.Tactics.CanonCommSwaps.fst
-    CHECK           FStar.NMST.fst
-    EXTRACT         FStar.Map.fst.checked
-    CHECK           FStar.WellFoundedRelation.fst
-    CHECK           FStar.Stubs.Reflection.V2.Builtins.fsti
-    CHECK           FStar.Reflection.V2.Compare.fsti
-    EXTRACT         FStar.Universe.PCM.fst.checked
-    CHECK           FStar.Sequence.Permutation.fst
-    EXTRACT         FStar.List.Pure.Base.fst.checked
-    CHECK           FStar.Heap.fst
-    CHECK           FStar.Monotonic.HyperHeap.fsti
-    CHECK           FStar.Monotonic.Heap.fst
-    CHECK           FStar.Reflection.V1.Compare.fsti
-    CHECK           FStar.LexicographicOrdering.fst
-    CHECK           FStar.Reflection.V2.Collect.fst
-    CHECK           FStar.Stubs.Reflection.V1.Data.fsti
-    CHECK           FStar.Reflection.TermEq.fsti
- * Warning 330 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/experimental/FStar.NMST.fst(200,45-200,58):
-   - Polymonadic binds ((DIV, NMSTATE) |> NMSTATE) in this case) is an
-     experimental feature;it is subject to some redesign in the future. Please
-     keep us informed (on github etc.) about how you are using it
- 
- * Warning 330 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/experimental/FStar.NMST.fst(200,45-200,58):
-   - Polymonadic binds ((DIV, NMSTATE) |> NMSTATE) in this case) is an
-     experimental feature;it is subject to some redesign in the future. Please
-     keep us informed (on github etc.) about how you are using it
- 
-    CHECK           FStar.BitVector.fsti
-    CHECK           FStar.IntegerIntervals.fst
- * Warning 352 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/experimental/FStar.NMST.fst(224,45-224,65):
-   - Combinator FStar.NMSTTotal.NMSTATETOT ~> FStar.NMST.NMSTATE is not a
-     substitutive indexed effect combinator, it is better to make it one if
-     possible for better performance and ease of use
- 
-    CHECK           FStar.ST.fst
-    CHECK           FStar.Axiomatic.Array.fst
-    CHECK           FStar.Relational.Relational.fst
-    CHECK           FStar.TwoLevelHeap.fst
-    EXTRACT         FStar.IntegerIntervals.fst.checked
-    CHECK           FStar.Monotonic.HyperStack.fsti
-    CHECK           FStar.List.Tot.Properties.fst
-    CHECK           FStar.List.Tot.fst
-    CHECK           FStar.List.Pure.Properties.fst
-    CHECK           FStar.Reflection.TermEq.Simple.fst
- * Warning 290 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.WellFoundedRelation.fst(152,21-152,46):
-   - In the decreases clause for this function, the SMT solver may not be able to
-     prove that the types of
-       wfr_a.decreaser (FStar.Pervasives.dfst xy)
-       (bound in
-       FStar.WellFoundedRelation.fst(152,21-152,46))
-     and
-       wfr_a.decreaser (FStar.Pervasives.dfst xy)
-       (bound in
-       FStar.WellFoundedRelation.fst(152,21-152,46))
-     are equal.
-   - The type of the first term is:
-       FStar.WellFoundedRelation.acc_classical wfr_a.relation
-         (FStar.Pervasives.dfst xy)
-   - The type of the second term is:
-       FStar.WellFoundedRelation.acc_classical wfr_a.relation
-         (FStar.Pervasives.dfst xy)
-   - If the proof fails, try annotating these with the same type.
- 
-    EXTRACT         FStar.TwoLevelHeap.fst.checked
-    EXTRACT         FStar.Axiomatic.Array.fst.checked
-    CHECK           FStar.All.fsti
-    CHECK           FStar.Ref.fst
-    EXTRACT         FStar.Relational.Relational.fst.checked
-    CHECK           FStar.MRef.fsti
-    CHECK           FStar.Seq.Base.fst
-    CHECK           FStar.Seq.Properties.fsti
-    CHECK           FStar.FiniteSet.Base.fsti
-    CHECK           FStar.Reflection.V2.Derived.fst
-    CHECK           FStar.Reflection.V2.Derived.Lemmas.fst
-    CHECK           FStar.Monotonic.HyperHeap.fst
-    CHECK           FStar.OrdSet.fsti
-    CHECK           FStar.Sequence.Base.fst
-    CHECK           FStar.Reflection.TermEq.fst
-    CHECK           FStar.ImmutableArray.fsti
-    CHECK           FStar.UInt.fsti
-    CHECK           FStar.Stubs.Reflection.V1.Builtins.fsti
-    EXTRACT         FStar.WellFoundedRelation.fst.checked
-    CHECK           FStar.List.fst
-    CHECK           FStar.Relational.Comp.fst
-    CHECK           FStar.Option.fst
-    CHECK           FStar.MRef.fst
-    EXTRACT         FStar.Ref.fst.checked
-    CHECK           FStar.Reflection.V1.Derived.fst
-    CHECK           FStar.Reflection.V2.fst
-    CHECK           FStar.Reflection.V2.Compare.fst
-    CHECK           FStar.FiniteSet.Base.fst
-    CHECK           FStar.FiniteSet.Ambient.fst
-    CHECK           FStar.FiniteMap.Base.fsti
- * Warning 242 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.LexicographicOrdering.fsti(187,0-194,59):
-   - Definitions of inner let-rec lex_t_wf_aux_y and its enclosing top-level
-     letbinding are not encoded to the solver, you will only be able to reason
-     with their types
-   - Also see: /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.LexicographicOrdering.fst(75,14-75,28)
- 
-    EXTRACT         FStar.MRef.fst.checked
- * Warning 242 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.LexicographicOrdering.fsti(187,0-194,59):
-   - Definitions of inner let-rec get_acc and its enclosing top-level letbinding
-     are not encoded to the solver, you will only be able to reason with their
-     types
-   - Also see: /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.LexicographicOrdering.fst(124,10-124,17)
- 
-    CHECK           FStar.List.Pure.fst
-    EXTRACT         FStar.Relational.Comp.fst.checked
-    EXTRACT         FStar.LexicographicOrdering.fst.checked
-    EXTRACT         FStar.Monotonic.HyperHeap.fst.checked
-    EXTRACT         FStar.FiniteSet.Ambient.fst.checked
-    CHECK           FStar.Reflection.Typing.Builtins.fsti
-    CHECK           FStar.Reflection.V1.Derived.Lemmas.fst
-    CHECK           FStar.OrdSet.fst
-    CHECK           FStar.OrdMap.fsti
-    CHECK           FStar.OrdSetProps.fst
-    CHECK           FStar.Monotonic.HyperStack.fst
-    CHECK           FStar.HyperStack.fst
- * Warning 271 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.UInt.fsti(436,8-436,51):
-   - Pattern uses these theory symbols or terms that should not be in an SMT
-     pattern:
-       Prims.op_Subtraction
- 
-    CHECK           FStar.FiniteMap.Ambient.fst
-    EXTRACT         FStar.HyperStack.fst.checked
-    CHECK           FStar.HyperStack.ST.fsti
-    CHECK           FStar.Util.fst
-    EXTRACT         FStar.OrdSetProps.fst.checked
-    CHECK           FStar.Reflection.V1.fst
-    CHECK           FStar.UInt32.fsti
-    CHECK           FStar.BV.fsti
-    EXTRACT         FStar.Sequence.Permutation.fst.checked
-    EXTRACT         FStar.Seq.Base.fst.checked
-    CHECK           FStar.OrdMap.fst
-    CHECK           FStar.OrdMapProps.fst
-    EXTRACT         FStar.FiniteMap.Ambient.fst.checked
-    CHECK           FStar.Reflection.fst
-    EXTRACT         FStar.OrdMapProps.fst.checked
-    CHECK           FStar.Char.fsti
-    CHECK           FStar.UInt64.fsti
-    CHECK           FStar.UInt16.fsti
-    CHECK           FStar.UInt8.fsti
-    CHECK           FStar.UInt32.fst
-    CHECK           FStar.Seq.Properties.fst
-    CHECK           FStar.Seq.fst
-    CHECK           FStar.Seq.Equiv.fsti
-    CHECK           FStar.Tactics.BV.Lemmas.fsti
-    CHECK           FStar.ModifiesGen.fsti
-    CHECK           FStar.Monotonic.DependentMap.fsti
-    CHECK           LowStar.Comment.fsti
-    CHECK           FStar.Monotonic.Map.fst
-    CHECK           LowStar.Failure.fsti
-    CHECK           FStar.HyperStack.All.fst
-    CHECK           LowStar.Ignore.fsti
-    CHECK           FStar.HyperStack.ST.fst
-    EXTRACT         FStar.OrdMap.fst.checked
-    EXTRACT         FStar.FiniteSet.Base.fst.checked
-    CHECK           FStar.Pprint.fsti
-    CHECK           FStar.String.fsti
-    EXTRACT         FStar.Seq.fst.checked
-    CHECK           FStar.UInt.fst
-    CHECK           FStar.BitVector.fst
-    CHECK           FStar.Int.fsti
-    CHECK           FStar.BV.fst
-    CHECK           FStar.Sequence.Seq.fsti
-    CHECK           FStar.Fin.fsti
-    CHECK           FStar.Buffer.fst
-    CHECK           FStar.Monotonic.Seq.fst
-    CHECK           FStar.Seq.Sorted.fst
-    CHECK           FStar.FunctionalQueue.fsti
-    CHECK           FStar.Array.fsti
-    CHECK           FStar.Vector.Base.fsti
-    CHECK           FStar.Matrix2.fsti
-    EXTRACT         FStar.Monotonic.HyperStack.fst.checked
-    CHECK           FStar.Seq.Equiv.fst
-    CHECK           FStar.Seq.Permutation.fsti
-    CHECK           LowStar.Comment.fst
-    CHECK           FStar.UInt8.fst
-    CHECK           FStar.HyperStack.IO.fst
-    CHECK           FStar.UInt128.fsti
-    CHECK           FStar.Endianness.fsti
-    CHECK           FStar.UInt64.fst
-    CHECK           FStar.SizeT.fsti
-    CHECK           FStar.IO.fsti
-    CHECK           FStar.UInt16.fst
-    EXTRACT         FStar.List.Tot.Properties.fst.checked
-    CHECK           FStar.Tactics.BV.Lemmas.fst
-    CHECK           FStar.Issue.fsti
-    CHECK           FStar.Stubs.Errors.Msg.fsti
-    CHECK           FStar.Sequence.Seq.fst
-    CHECK           FStar.FunctionalQueue.fst
-    CHECK           FStar.Fin.fst
-    EXTRACT         FStar.Monotonic.Map.fst.checked
-    CHECK           FStar.Monotonic.DependentMap.fst
-    EXTRACT         FStar.Math.Lemmas.fst.checked
-    EXTRACT         FStar.Seq.Sorted.fst.checked
-    EXTRACT         LowStar.Comment.fst.checked
-    CHECK           FStar.Array.fst
-    CHECK           FStar.Vector.Properties.fst
-    CHECK           FStar.Vector.Base.fst
-    CHECK           FStar.Seq.Permutation.fst
-    CHECK           FStar.Algebra.CommMonoid.Fold.fsti
-    CHECK           FStar.Stubs.Tactics.Common.fsti
-    CHECK           FStar.Error.fst
-    EXTRACT         FStar.Sequence.Seq.fst.checked
-    EXTRACT         FStar.Seq.Equiv.fst.checked
-    CHECK           FStar.Stubs.Tactics.Types.fsti
-    EXTRACT         FStar.BV.fst.checked
- * Warning 318 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.HyperStack.ST.fst(317,4-317,8):
-   - Values of type `drgn` will be erased during extraction, but its interface
-     hides this fact.
-   - Add the `must_erase_for_extraction` attribute to the `val drgn` declaration
-     for this symbol in the interface
- 
-    CHECK           FStar.Int.fst
-    CHECK           FStar.Int64.fsti
-    CHECK           FStar.Int32.fsti
-    CHECK           FStar.Int16.fsti
-    CHECK           FStar.Int8.fsti
-    CHECK           FStar.Vector.fst
-    CHECK           FStar.Algebra.CommMonoid.Fold.fst
-    CHECK           FStar.Matrix.fsti
-    CHECK           FStar.Algebra.CommMonoid.Fold.Nested.fsti
-    EXTRACT         FStar.FunctionalQueue.fst.checked
-    EXTRACT         FStar.Error.fst.checked
-    EXTRACT         FStar.BitVector.fst.checked
-    CHECK           FStar.Endianness.fst
-    EXTRACT         FStar.Monotonic.Seq.fst.checked
-    CHECK           FStar.Stubs.Tactics.Result.fsti
-    EXTRACT         FStar.Monotonic.DependentMap.fst.checked
-    EXTRACT         FStar.Fin.fst.checked
-    EXTRACT         FStar.Array.fst.checked
-    CHECK           FStar.Int128.fsti
-    CHECK           FStar.Int64.fst
-    CHECK           FStar.Int32.fst
-    CHECK           FStar.Int8.fst
-    CHECK           FStar.Int.Cast.fst
-    CHECK           FStar.PtrdiffT.fsti
-    CHECK           FStar.Int16.fst
-    CHECK           FStar.Printf.fst
-    CHECK           FStar.Tactics.Effect.fsti
-    CHECK           FStar.Tactics.Result.fsti
-    EXTRACT         FStar.Algebra.CommMonoid.Fold.fst.checked
- * Warning 271 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.UInt.fsti(436,8-436,51):
-   - Pattern uses these theory symbols or terms that should not be in an SMT
-     pattern:
-       Prims.op_Subtraction
- 
-    CHECK           LowStar.Monotonic.Buffer.fsti
-    CHECK           FStar.Pointer.Base.fsti
- * Warning 271 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.UInt.fst(293,8-293,25):
-   - Pattern uses these theory symbols or terms that should not be in an SMT
-     pattern:
-       Prims.op_Subtraction
-   - See also /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.UInt.fsti(436,8-436,51)
- 
-    CHECK           FStar.Matrix.fst
-    CHECK           FStar.Algebra.CommMonoid.Fold.Nested.fst
-    CHECK           FStar.Int128.fst
-    CHECK           FStar.Integers.fst
-    CHECK           FStar.Stubs.Tactics.Unseal.fsti
-    CHECK           FStar.Tactics.LaxTermEq.fsti
-    CHECK           FStar.Tactics.Easy.fsti
-    CHECK           FStar.Tactics.Typeclasses.fsti
-    CHECK           FStar.Tactics.MApply0.fsti
-    CHECK           FStar.Tactics.NamedView.fsti
-    CHECK           FStar.Tactics.SMT.fsti
-    CHECK           FStar.Tactics.Util.fst
-    CHECK           FStar.Tactics.Print.fsti
-    CHECK           FStar.Tactics.Names.fsti
-    CHECK           FStar.Tactics.BV.fsti
-    CHECK           FStar.Tactics.Canon.fsti
-    CHECK           FStar.Tactics.Effect.fst
-    CHECK           FStar.InteractiveHelpers.Propositions.fsti
-    CHECK           FStar.Tactics.Parametricity.fsti
-    CHECK           FStar.Tactics.MkProjectors.fsti
-    EXTRACT         FStar.Int.fst.checked
-    EXTRACT         FStar.Int.Cast.fst.checked
-    CHECK           FStar.SizeT.fst
-    CHECK           FStar.Int.Cast.Full.fst
-    CHECK           FStar.Stubs.Tactics.V2.Builtins.fsti
-    CHECK           FStar.Stubs.Tactics.V1.Builtins.fsti
-    CHECK           FStar.Class.Eq.Raw.fst
-    CHECK           FStar.Class.Add.fst
-    CHECK           FStar.Class.Printable.fst
-    CHECK           FStar.Class.TotalOrder.Raw.fst
-    CHECK           FStar.Class.Embeddable.fsti
-    CHECK           FStar.Math.Euclid.fst
-    EXTRACT         FStar.Int128.fst.checked
-    EXTRACT         FStar.Algebra.CommMonoid.Fold.Nested.fst.checked
-    EXTRACT         FStar.Sequence.Base.fst.checked
-    CHECK           FStar.Tactics.Visit.fst
-    EXTRACT         FStar.OrdSet.fst.checked
- * Warning 318 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.SizeT.fst(34,4-34,12):
-   - Values of type `fits_u32` will be erased during extraction, but its
-     interface hides this fact.
-   - Add the `must_erase_for_extraction` attribute to the `val fits_u32`
-     declaration for this symbol in the interface
- 
- * Warning 318 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.SizeT.fst(35,4-35,12):
-   - Values of type `fits_u64` will be erased during extraction, but its
-     interface hides this fact.
-   - Add the `must_erase_for_extraction` attribute to the `val fits_u64`
-     declaration for this symbol in the interface
- 
-    EXTRACT         FStar.Class.Add.fst.checked
-    CHECK           FStar.Reflection.V1.Formula.fst
-    CHECK           FStar.Tactics.V1.SyntaxHelpers.fst
-    CHECK           FStar.Tactics.Builtins.fsti
-    CHECK           FStar.Tactics.V2.SyntaxHelpers.fsti
-    EXTRACT         FStar.Int.Cast.Full.fst.checked
-    CHECK           FStar.FunctionalExtensionality.fst
-    CHECK           FStar.Tactics.V2.SyntaxCoercions.fst
-    CHECK           FStar.Reflection.V2.Formula.fst
-    CHECK           FStar.Tactics.SMT.fst
-    CHECK           FStar.Tactics.NamedView.fst
-    CHECK           FStar.Tactics.LaxTermEq.fst
-    CHECK           FStar.ModifiesGen.fst
-    CHECK           FStar.Reflection.Typing.fsti
-    EXTRACT         FStar.Class.Eq.Raw.fst.checked
-    CHECK           FStar.Class.Ord.Raw.fsti
-    CHECK           FStar.Class.Eq.fst
-    CHECK           FStar.Class.Embeddable.fst
-    EXTRACT         FStar.Class.TotalOrder.Raw.fst.checked
- * Warning 271 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/legacy/FStar.Buffer.fst(1004,2-1004,69):
-   - Pattern uses these theory symbols or terms that should not be in an SMT
-     pattern:
-       Prims.op_Addition
- 
-    EXTRACT         FStar.SizeT.fst.checked
-    CHECK           FStar.PtrdiffT.fst
-    EXTRACT         FStar.Endianness.fst.checked
-    EXTRACT         FStar.Seq.Properties.fst.checked
-    EXTRACT         FStar.Class.Printable.fst.checked
-    CHECK           FStar.Tactics.V2.SyntaxHelpers.fst
-    CHECK           FStar.Tactics.Names.fst
-    CHECK           FStar.Class.Ord.Raw.fst
-    CHECK           FStar.RBMap.fsti
-    CHECK           FStar.RBSet.fsti
-    CHECK           FStar.Tactics.MApply.fsti
-    EXTRACT         FStar.Class.Eq.fst.checked
-    CHECK           FStar.Tactics.SyntaxHelpers.fst
-    EXTRACT         FStar.Integers.fst.checked
-    CHECK           FStar.ConstantTime.Integers.fsti
-    EXTRACT         FStar.FunctionalExtensionality.fst.checked
-    EXTRACT         FStar.PtrdiffT.fst.checked
-    CHECK           FStar.RBSet.fst
-    CHECK           FStar.RBMap.fst
-    CHECK           FStar.Tactics.V1.Logic.fsti
-    CHECK           FStar.Tactics.V1.Derived.fst
-    CHECK           FStar.Reflection.Formula.fst
- * Warning 242 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.Class.Ord.Raw.fst(16,0-24,31):
-   - Definitions of inner let-rec insert and its enclosing top-level letbinding
-     are not encoded to the solver, you will only be able to reason with their
-     types
-   - Also see: /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.Class.Ord.Raw.fst(17,11-17,17)
- 
-    CHECK           FStar.Tactics.MApply.fst
-    CHECK           FStar.Tactics.V2.Logic.fsti
-    CHECK           FStar.Tactics.V2.Derived.fst
- * Warning 242 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.Class.Ord.Raw.fst(41,0-53,37):
-   - Definitions of inner let-rec insert and its enclosing top-level letbinding
-     are not encoded to the solver, you will only be able to reason with their
-     types
-   - Also see: /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.Class.Ord.Raw.fst(42,11-42,17)
- 
- * Warning 242 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.Class.Ord.Raw.fst(55,0-70,16):
-   - Definitions of inner let-rec go and its enclosing top-level letbinding are
-     not encoded to the solver, you will only be able to reason with their types
-   - Also see: /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.Class.Ord.Raw.fst(59,10-59,12)
- 
-    EXTRACT         FStar.UInt.fst.checked
- * Warning 242 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.Class.Ord.Raw.fst(117,0-122,1):
-   - Definitions of inner let-rec insert and its enclosing top-level letbinding
-     are not encoded to the solver, you will only be able to reason with their
-     types
-   - Also see: /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.Class.Ord.Raw.fst(17,11-17,17)
- 
- * Warning 242 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.Class.Ord.Raw.fst(117,0-122,1):
-   - Definitions of inner let-rec insert and its enclosing top-level letbinding
-     are not encoded to the solver, you will only be able to reason with their
-     types
-   - Also see: /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.Class.Ord.Raw.fst(42,11-42,17)
- 
- * Warning 242 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.Class.Ord.Raw.fst(117,0-122,1):
-   - Definitions of inner let-rec go and its enclosing top-level letbinding are
-     not encoded to the solver, you will only be able to reason with their types
-   - Also see: /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.Class.Ord.Raw.fst(59,10-59,12)
- 
-    EXTRACT         FStar.Class.Ord.Raw.fst.checked
- * Warning 328 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.RBMap.fst(144,8-144,15):
-   - Global binding 'FStar.RBMap.for_any' is recursive but not used in its body
- 
-    EXTRACT         FStar.Seq.Permutation.fst.checked
-    EXTRACT         FStar.Math.Euclid.fst.checked
-    CHECK           FStar.Modifies.fsti
-    CHECK           FStar.Buffer.Quantifiers.fst
-    CHECK           FStar.ConstantTime.Integers.fst
-    CHECK           FStar.Tactics.Logic.fst
- * Warning 242 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.RBSet.fst(49,0-58,20):
-   - Definitions of inner let-rec add' and its enclosing top-level letbinding are
-     not encoded to the solver, you will only be able to reason with their types
-   - Also see: /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.RBSet.fst(50,10-50,14)
- 
- * Warning 242 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.RBSet.fst(60,0-66,23):
-   - Definitions of inner let-rec aux and its enclosing top-level letbinding are
-     not encoded to the solver, you will only be able to reason with their types
-   - Also see: /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.RBSet.fst(61,10-61,13)
- 
- * Warning 242 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.RBMap.fst(49,0-58,20):
-   - Definitions of inner let-rec add' and its enclosing top-level letbinding are
-     not encoded to the solver, you will only be able to reason with their types
-   - Also see: /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.RBMap.fst(50,10-50,14)
- 
- * Warning 242 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.RBMap.fst(60,0-66,23):
-   - Definitions of inner let-rec aux and its enclosing top-level letbinding are
-     not encoded to the solver, you will only be able to reason with their types
-   - Also see: /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.RBMap.fst(61,10-61,13)
- 
- * Warning 242 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.Tactics.NamedView.fst(670,0-688,28):
-   - Definitions of inner let-rec aux and its enclosing top-level letbinding are
-     not encoded to the solver, you will only be able to reason with their types
-   - Also see: /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.Tactics.NamedView.fst(262,10-262,13)
- 
- * Warning 318 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.ModifiesGen.fst(75,4-75,7):
-   - Values of type `loc` will be erased during extraction, but its interface
-     hides this fact.
-   - Add the `must_erase_for_extraction` attribute to the `val loc` declaration
-     for this symbol in the interface
- 
- * Warning 242 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.RBSet.fst(114,0-123,10):
-   - Definitions of inner let-rec aux and its enclosing top-level letbinding are
-     not encoded to the solver, you will only be able to reason with their types
-   - Also see: /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.RBSet.fst(115,10-115,13)
- 
- * Warning 242 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.RBSet.fst(152,0-154,53):
-   - Definitions of inner let-rec add' and its enclosing top-level letbinding are
-     not encoded to the solver, you will only be able to reason with their types
-   - Also see: /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.RBSet.fst(50,10-50,14)
- 
- * Warning 242 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.RBSet.fst(152,0-154,53):
-   - Definitions of inner let-rec aux and its enclosing top-level letbinding are
-     not encoded to the solver, you will only be able to reason with their types
-   - Also see: /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.RBSet.fst(61,10-61,13)
- 
- * Warning 242 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.RBSet.fst(152,0-154,53):
-   - Definitions of inner let-rec aux and its enclosing top-level letbinding are
-     not encoded to the solver, you will only be able to reason with their types
-   - Also see: /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.RBSet.fst(115,10-115,13)
- 
-    EXTRACT         FStar.RBSet.fst.checked
- * Warning 242 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.RBMap.fst(128,0-137,10):
-   - Definitions of inner let-rec aux and its enclosing top-level letbinding are
-     not encoded to the solver, you will only be able to reason with their types
-   - Also see: /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.RBMap.fst(129,10-129,13)
- 
- * Warning 242 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.RBMap.fst(153,0-154,53):
-   - Definitions of inner let-rec add' and its enclosing top-level letbinding are
-     not encoded to the solver, you will only be able to reason with their types
-   - Also see: /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.RBMap.fst(50,10-50,14)
- 
- * Warning 242 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.RBMap.fst(153,0-154,53):
-   - Definitions of inner let-rec aux and its enclosing top-level letbinding are
-     not encoded to the solver, you will only be able to reason with their types
-   - Also see: /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.RBMap.fst(61,10-61,13)
- 
- * Warning 242 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.RBMap.fst(153,0-154,53):
-   - Definitions of inner let-rec aux and its enclosing top-level letbinding are
-     not encoded to the solver, you will only be able to reason with their types
-   - Also see: /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.RBMap.fst(129,10-129,13)
- 
-    EXTRACT         FStar.RBMap.fst.checked
-    CHECK           FStar.Pointer.Base.fst
-    CHECK           FStar.Pointer.Derived1.fsti
- * Warning 271 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/legacy/FStar.Buffer.Quantifiers.fst(32,2-32,77):
-   - Pattern uses these theory symbols or terms that should not be in an SMT
-     pattern:
-       Prims.op_Addition
- 
-    CHECK           LowStar.Monotonic.Buffer.fst
-    CHECK           LowStar.Buffer.fst
-    CHECK           LowStar.PrefixFreezableBuffer.fsti
-    CHECK           LowStar.BufferView.fsti
-    CHECK           LowStar.BufferView.Down.fsti
-    CHECK           LowStar.Printf.fst
-    EXTRACT         FStar.ConstantTime.Integers.fst.checked
-    CHECK           FStar.Modifies.fst
- * Warning 328 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/LowStar.Printf.fst(253,8-253,13):
-   - Global binding 'LowStar.Printf.arg_t' is recursive but not used in its body
- 
-    CHECK           FStar.Tactics.V1.fsti
-    CHECK           FStar.Tactics.V1.Logic.fst
-    CHECK           FStar.Tactics.Derived.fst
-    CHECK           FStar.Tactics.V2.Bare.fsti
-    CHECK           FStar.UInt128.fst
-    CHECK           FStar.Tactics.CanonCommSemiring.fst
-    CHECK           FStar.Tactics.MkProjectors.fst
-    CHECK           FStar.Tactics.Print.fst
-    CHECK           FStar.Tactics.Typeclasses.fst
-    CHECK           FStar.Tactics.V2.Logic.fst
-    CHECK           FStar.Tactics.MApply0.fst
-    EXTRACT         LowStar.Buffer.fst.checked
-    CHECK           LowStar.BufferOps.fst
-    CHECK           LowStar.Modifies.fst
-    CHECK           LowStar.ImmutableBuffer.fst
-    CHECK           LowStar.BufferCompat.fst
-    CHECK           FStar.Pointer.Derived3.fsti
-    CHECK           FStar.Pointer.Derived2.fsti
-    CHECK           FStar.Pointer.Derived1.fst
- * Warning 318 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.Modifies.fst(181,4-181,7):
-   - Values of type `loc` will be erased during extraction, but its interface
-     hides this fact.
-   - Add the `must_erase_for_extraction` attribute to the `val loc` declaration
-     for this symbol in the interface
- 
- * Warning 318 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.Modifies.fst(204,4-204,16):
-   - Values of type `loc_includes` will be erased during extraction, but its
-     interface hides this fact.
-   - Add the `must_erase_for_extraction` attribute to the `val loc_includes`
-     declaration for this symbol in the interface
- 
-    CHECK           LowStar.BufferView.fst
- * Warning 318 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.Modifies.fst(238,4-238,16):
-   - Values of type `loc_disjoint` will be erased during extraction, but its
-     interface hides this fact.
-   - Add the `must_erase_for_extraction` attribute to the `val loc_disjoint`
-     declaration for this symbol in the interface
- 
-    CHECK           LowStar.BufferView.Down.fst
-    CHECK           LowStar.BufferView.Up.fsti
-    CHECK           FStar.Reflection.Typing.fst
-    CHECK           FStar.Tactics.fsti
- * Warning 318 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.Modifies.fst(260,4-260,12):
-   - Values of type `modifies` will be erased during extraction, but its
-     interface hides this fact.
-   - Add the `must_erase_for_extraction` attribute to the `val modifies`
-     declaration for this symbol in the interface
- 
-    CHECK           FStar.Tactics.V2.fsti
-    CHECK           FStar.Reflection.V2.Arith.fst
-    CHECK           FStar.Tactics.CanonCommMonoidSimple.Equiv.fst
-    CHECK           FStar.Tactics.PrettifyType.fsti
-    CHECK           FStar.Tactics.Easy.fst
-    CHECK           FStar.Tactics.Parametricity.fst
-    CHECK           FStar.Tactics.TypeRepr.fsti
-    CHECK           FStar.Tactics.CheckLN.fsti
-    CHECK           FStar.Tactics.CanonCommMonoidSimple.fst
-    EXTRACT         LowStar.Modifies.fst.checked
-    CHECK           FStar.Bytes.fsti
-    CHECK           LowStar.ModifiesPat.fst
-    CHECK           LowStar.Vector.fst
-    CHECK           LowStar.Regional.fst
-    CHECK           LowStar.ToFStarBuffer.fst
-    EXTRACT         LowStar.BufferOps.fst.checked
-    CHECK           LowStar.Endianness.fst
-    EXTRACT         LowStar.BufferCompat.fst.checked
-    CHECK           FStar.Pointer.Derived3.fst
-    CHECK           FStar.Pointer.fst
-    CHECK           FStar.Pointer.Derived2.fst
- * Warning 288 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/LowStar.Monotonic.Buffer.fst(237,21-237,29):
-   - Prims.has_type is deprecated
-   - 'has_type' is intended for internal use and debugging purposes only; do not
-     rely on it for your proofs
-   - See also /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/Prims.fst(289,5-289,13)
- 
- * Warning 288 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/LowStar.Monotonic.Buffer.fst(236,21-236,29):
-   - Prims.has_type is deprecated
-   - 'has_type' is intended for internal use and debugging purposes only; do not
-     rely on it for your proofs
-   - See also /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/Prims.fst(289,5-289,13)
- 
- * Warning 288 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/LowStar.Monotonic.Buffer.fst(237,21-237,29):
-   - Prims.has_type is deprecated
-   - 'has_type' is intended for internal use and debugging purposes only; do not
-     rely on it for your proofs
-   - See also /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/Prims.fst(289,5-289,13)
- 
- * Warning 288 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/LowStar.Monotonic.Buffer.fst(236,21-236,29):
-   - Prims.has_type is deprecated
-   - 'has_type' is intended for internal use and debugging purposes only; do not
-     rely on it for your proofs
-   - See also /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/Prims.fst(289,5-289,13)
- 
-    CHECK           FStar.WellFounded.Util.fst
-    CHECK           FStar.Pure.BreakVC.fsti
-    CHECK           FStar.InteractiveHelpers.Base.fst
-    CHECK           FStar.Tactics.BreakVC.fsti
-    CHECK           FStar.Tactics.CheckLN.fst
-    CHECK           FStar.Tactics.TypeRepr.fst
-    CHECK           FStar.FiniteMap.Base.fst
-    CHECK           FStar.BigOps.fst
-    CHECK           FStar.ReflexiveTransitiveClosure.fst
- * Warning 318 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.Modifies.fst(416,4-416,25):
-   - Values of type `does_not_contain_addr` will be erased during extraction, but
-     its interface hides this fact.
-   - Add the `must_erase_for_extraction` attribute to the `val
-     does_not_contain_addr` declaration for this symbol in the interface
- 
-    CHECK           FStar.Tactics.Simplifier.fst
-    CHECK           FStar.Tactics.CanonCommMonoid.fst
-    CHECK           FStar.Tactics.PatternMatching.fst
-    CHECK           FStar.Tactics.CanonMonoid.fst
-    CHECK           FStar.Tactics.PrettifyType.fst
-    EXTRACT         LowStar.ModifiesPat.fst.checked
- * Warning 318 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.Modifies.fst(435,4-435,12):
-   - Values of type `cloc_cls` will be erased during extraction, but its
-     interface hides this fact.
-   - Add the `must_erase_for_extraction` attribute to the `val cloc_cls`
-     declaration for this symbol in the interface
- 
-    CHECK           LowStar.BufferView.Up.fst
-    EXTRACT         FStar.Modifies.fst.checked
-    EXTRACT         FStar.Pointer.fst.checked
-    CHECK           FStar.TaggedUnion.fsti
-    CHECK           FStar.BufferNG.fst
-    CHECK           LowStar.UninitializedBuffer.fst
-    EXTRACT         LowStar.ImmutableBuffer.fst.checked
-    CHECK           LowStar.ConstBuffer.fsti
-    CHECK           LowStar.Literal.fsti
-    CHECK           FStar.Pure.BreakVC.fst
-    CHECK           FStar.Tactics.BreakVC.fst
-    CHECK           FStar.Crypto.fst
-    CHECK           FStar.Udp.fsti
-    CHECK           FStar.Tcp.fsti
-    CHECK           FStar.Tactics.Arith.fst
-    CHECK           FStar.Tactics.Canon.fst
-    CHECK           FStar.Tactics.BV.fst
- * Warning 242 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.WellFounded.Util.fst(111,0-121,5):
-   - Definitions of inner let-rec aux and its enclosing top-level letbinding are
-     not encoded to the solver, you will only be able to reason with their types
-   - Also see: /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.WellFounded.Util.fst(50,12-50,15)
- 
- * Warning 242 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.WellFounded.Util.fst(111,0-121,5):
-   - Definitions of inner let-rec aux and its enclosing top-level letbinding are
-     not encoded to the solver, you will only be able to reason with their types
-   - Also see: /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.WellFounded.Util.fst(80,12-80,15)
- 
- * Warning 242 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.WellFounded.Util.fst(111,0-121,5):
-   - Definitions of inner let-rec f and its enclosing top-level letbinding are
-     not encoded to the solver, you will only be able to reason with their types
-   - Also see: /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/FStar.WellFounded.Util.fst(113,12-113,13)
- 
-    EXTRACT         LowStar.Regional.fst.checked
-    EXTRACT         FStar.WellFounded.Util.fst.checked
-    EXTRACT         FStar.BigOps.fst.checked
-    EXTRACT         LowStar.ToFStarBuffer.fst.checked
- * Warning 318 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/LowStar.Monotonic.Buffer.fst(804,4-804,7):
-   - Values of type `loc` will be erased during extraction, but its interface
-     hides this fact.
-   - Add the `must_erase_for_extraction` attribute to the `val loc` declaration
-     for this symbol in the interface
- 
-    EXTRACT         FStar.Matrix.fst.checked
- * Warning 318 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/LowStar.Monotonic.Buffer.fst(867,4-867,16):
-   - Values of type `loc_includes` will be erased during extraction, but its
-     interface hides this fact.
-   - Add the `must_erase_for_extraction` attribute to the `val loc_includes`
-     declaration for this symbol in the interface
- 
-    EXTRACT         FStar.Pure.BreakVC.fst.checked
-    EXTRACT         FStar.Crypto.fst.checked
-    CHECK           LowStar.ConstBuffer.fst
-    EXTRACT         FStar.FiniteMap.Base.fst.checked
-    EXTRACT         FStar.ReflexiveTransitiveClosure.fst.checked
-    CHECK           FStar.TaggedUnion.fst
-    CHECK           FStar.InteractiveHelpers.ExploreTerm.fst
- * Warning 318 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/LowStar.Monotonic.Buffer.fst(1048,4-1048,16):
-   - Values of type `loc_disjoint` will be erased during extraction, but its
-     interface hides this fact.
-   - Add the `must_erase_for_extraction` attribute to the `val loc_disjoint`
-     declaration for this symbol in the interface
- 
-    EXTRACT         LowStar.Endianness.fst.checked
-    CHECK           LowStar.PrefixFreezableBuffer.fst
-    EXTRACT         LowStar.UninitializedBuffer.fst.checked
- * Warning 318 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/LowStar.Monotonic.Buffer.fst(1103,4-1103,12):
-   - Values of type `modifies` will be erased during extraction, but its
-     interface hides this fact.
-   - Add the `must_erase_for_extraction` attribute to the `val modifies`
-     declaration for this symbol in the interface
- 
-    EXTRACT         LowStar.BufferView.Up.fst.checked
-    EXTRACT         LowStar.ConstBuffer.fst.checked
-    EXTRACT         LowStar.Vector.fst.checked
-    CHECK           LowStar.RVector.fst
-    EXTRACT         LowStar.BufferView.Down.fst.checked
-    EXTRACT         LowStar.PrefixFreezableBuffer.fst.checked
-    EXTRACT         FStar.UInt128.fst.checked
- * Warning 318 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/LowStar.Monotonic.Buffer.fst(1422,4-1422,25):
-   - Values of type `does_not_contain_addr` will be erased during extraction, but
-     its interface hides this fact.
-   - Add the `must_erase_for_extraction` attribute to the `val
-     does_not_contain_addr` declaration for this symbol in the interface
- 
-    CHECK           FStar.InteractiveHelpers.Output.fst
-    CHECK           FStar.InteractiveHelpers.Propositions.fst
-    CHECK           FStar.InteractiveHelpers.Effectful.fst
-    EXTRACT         LowStar.BufferView.fst.checked
- * Warning 318 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/legacy/FStar.Pointer.Base.fst(3649,4-3649,7):
-   - Values of type `loc` will be erased during extraction, but its interface
-     hides this fact.
-   - Add the `must_erase_for_extraction` attribute to the `val loc` declaration
-     for this symbol in the interface
- 
- * Warning 318 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/legacy/FStar.Pointer.Base.fst(3667,4-3667,16):
-   - Values of type `loc_includes` will be erased during extraction, but its
-     interface hides this fact.
-   - Add the `must_erase_for_extraction` attribute to the `val loc_includes`
-     declaration for this symbol in the interface
- 
- * Warning 318 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/legacy/FStar.Pointer.Base.fst(3721,4-3721,16):
-   - Values of type `loc_disjoint` will be erased during extraction, but its
-     interface hides this fact.
-   - Add the `must_erase_for_extraction` attribute to the `val loc_disjoint`
-     declaration for this symbol in the interface
- 
- * Warning 318 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/legacy/FStar.Pointer.Base.fst(3778,4-3778,12):
-   - Values of type `modifies` will be erased during extraction, but its
-     interface hides this fact.
-   - Add the `must_erase_for_extraction` attribute to the `val modifies`
-     declaration for this symbol in the interface
- 
-    EXTRACT         LowStar.Monotonic.Buffer.fst.checked
-    CHECK           FStar.InteractiveHelpers.PostProcess.fst
-    CHECK           FStar.Math.Fermat.fst
- * Warning 318 at /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib/legacy/FStar.Pointer.Base.fst(4246,4-4246,12):
-   - Values of type `cloc_cls` will be erased during extraction, but its
-     interface hides this fact.
-   - Add the `must_erase_for_extraction` attribute to the `val cloc_cls`
-     declaration for this symbol in the interface
- 
-    EXTRACT         LowStar.RVector.fst.checked
-    CHECK           LowStar.Regional.Instances.fst
-    EXTRACT         FStar.Pointer.Base.fst.checked
-    EXTRACT         LowStar.Regional.Instances.fst.checked
-    CHECK           FStar.InteractiveHelpers.fst
-    EXTRACT         FStar.Math.Fermat.fst.checked
-   EXTRACT          STAGE 2 PLUGLIB
-    DEPEND          /home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07/ulib
-    EXTRACT         FStar.NormSteps.fst.checked
-    EXTRACT         FStar.Pervasives.fst.checked
-    EXTRACT         FStar.Mul.fst.checked
-    EXTRACT         FStar.IndefiniteDescription.fst.checked
-    EXTRACT         FStar.Squash.fst.checked
-    EXTRACT         FStar.Classical.fst.checked
-    EXTRACT         FStar.Classical.Sugar.fst.checked
-    EXTRACT         FStar.StrongExcludedMiddle.fst.checked
-    EXTRACT         FStar.List.Tot.Properties.fst.checked
-    EXTRACT         FStar.Seq.Base.fst.checked
-    EXTRACT         FStar.Preorder.fst.checked
-    EXTRACT         FStar.Calc.fst.checked
-    EXTRACT         FStar.Seq.Properties.fst.checked
-    EXTRACT         FStar.Seq.fst.checked
-    EXTRACT         FStar.Math.Lib.fst.checked
-    EXTRACT         FStar.Math.Lemmas.fst.checked
-    EXTRACT         FStar.BitVector.fst.checked
-    EXTRACT         FStar.UInt.fst.checked
-    EXTRACT         FStar.Monotonic.Pure.fst.checked
-    EXTRACT         FStar.Tactics.Effect.fst.checked
-    EXTRACT         FStar.Sealed.Inhabited.fst.checked
-    EXTRACT         FStar.Order.fst.checked
-    EXTRACT         FStar.Reflection.Const.fst.checked
-    EXTRACT         FStar.Tactics.LaxTermEq.fst.checked
-    EXTRACT         FStar.Tactics.Logic.Lemmas.fst.checked
-    EXTRACT         FStar.Reflection.TermEq.fst.checked
-    EXTRACT         FStar.Reflection.TermEq.Simple.fst.checked
-    EXTRACT         FStar.Tactics.SMT.fst.checked
-    EXTRACT         FStar.Reflection.V2.Collect.fst.checked
-    EXTRACT         FStar.Reflection.V2.Derived.Lemmas.fst.checked
-    EXTRACT         FStar.Reflection.V2.Derived.fst.checked
-    EXTRACT         FStar.Reflection.V2.Compare.fst.checked
-    EXTRACT         FStar.Reflection.V2.fst.checked
-    EXTRACT         FStar.Tactics.Util.fst.checked
-    EXTRACT         FStar.Tactics.NamedView.fst.checked
-    EXTRACT         FStar.Tactics.Visit.fst.checked
-    EXTRACT         FStar.PropositionalExtensionality.fst.checked
-    EXTRACT         FStar.Tactics.Names.fst.checked
-    EXTRACT         FStar.Tactics.V2.SyntaxCoercions.fst.checked
-    EXTRACT         FStar.Tactics.V2.SyntaxHelpers.fst.checked
-    EXTRACT         FStar.Reflection.V2.Formula.fst.checked
-    EXTRACT         FStar.Tactics.V2.Derived.fst.checked
-    EXTRACT         FStar.Tactics.Print.fst.checked
-    EXTRACT         FStar.Tactics.V2.Logic.fst.checked
-    EXTRACT         FStar.Tactics.Easy.fst.checked
-    EXTRACT         FStar.Tactics.Typeclasses.fst.checked
-    EXTRACT         FStar.Tactics.MApply0.fst.checked
-    EXTRACT         FStar.Tactics.MApply.fst.checked
-    EXTRACT         FStar.FunctionalExtensionality.fst.checked
-    EXTRACT         FStar.FiniteSet.Base.fst.checked
-    EXTRACT         FStar.FiniteSet.Ambient.fst.checked
-    EXTRACT         FStar.FiniteMap.Base.fst.checked
-    EXTRACT         FStar.ErasedLogic.fst.checked
-    EXTRACT         FStar.Set.fst.checked
-    EXTRACT         FStar.PredicateExtensionality.fst.checked
-    EXTRACT         FStar.Map.fst.checked
-    EXTRACT         FStar.Monotonic.HyperHeap.fst.checked
-    EXTRACT         FStar.Monotonic.HyperStack.fst.checked
-    EXTRACT         FStar.HyperStack.fst.checked
-    EXTRACT         FStar.Int.fst.checked
-    EXTRACT         FStar.Int.Cast.fst.checked
-    EXTRACT         FStar.Monotonic.Witnessed.fst.checked
-    EXTRACT         FStar.BV.fst.checked
-    EXTRACT         FStar.Tactics.BV.Lemmas.fst.checked
-    EXTRACT         FStar.Reflection.V2.Arith.fst.checked
-    EXTRACT         FStar.Tactics.BV.fst.checked
-    EXTRACT         FStar.UInt128.fst.checked
-    EXTRACT         FStar.Universe.fst.checked
-    EXTRACT         FStar.GSet.fst.checked
-    EXTRACT         FStar.BigOps.fst.checked
-    EXTRACT         LowStar.Monotonic.Buffer.fst.checked
-    EXTRACT         LowStar.Buffer.fst.checked
-    EXTRACT         LowStar.BufferOps.fst.checked
-    EXTRACT         FStar.Endianness.fst.checked
-    EXTRACT         LowStar.Endianness.fst.checked
-    EXTRACT         LowStar.PrefixFreezableBuffer.fst.checked
-    EXTRACT         FStar.OrdSet.fst.checked
-    EXTRACT         FStar.OrdMap.fst.checked
-    EXTRACT         FStar.OrdMapProps.fst.checked
-    EXTRACT         FStar.Functions.fst.checked
-    EXTRACT         FStar.SizeT.fst.checked
-    EXTRACT         FStar.PtrdiffT.fst.checked
-    EXTRACT         FStar.Class.Eq.Raw.fst.checked
-    EXTRACT         FStar.Class.Ord.Raw.fst.checked
-    EXTRACT         FStar.RBMap.fst.checked
-    EXTRACT         LowStar.Modifies.fst.checked
-    EXTRACT         FStar.Crypto.fst.checked
-    EXTRACT         FStar.Bijection.fst.checked
-    EXTRACT         LowStar.ModifiesPat.fst.checked
-    EXTRACT         FStar.Integers.fst.checked
-    EXTRACT         FStar.Int128.fst.checked
-    EXTRACT         LowStar.Vector.fst.checked
-    EXTRACT         LowStar.Regional.fst.checked
-    EXTRACT         LowStar.RVector.fst.checked
-    EXTRACT         FStar.Tactics.TypeRepr.fst.checked
-    EXTRACT         FStar.Class.Add.fst.checked
-    EXTRACT         LowStar.BufferView.fst.checked
-    EXTRACT         FStar.ExtractAs.fst.checked
-    EXTRACT         FStar.Reflection.V1.Derived.fst.checked
-    EXTRACT         FStar.Reflection.V1.Derived.Lemmas.fst.checked
-    EXTRACT         FStar.Reflection.V1.fst.checked
-    EXTRACT         FStar.Tactics.V1.SyntaxHelpers.fst.checked
-    EXTRACT         FStar.Reflection.V1.Formula.fst.checked
-    EXTRACT         FStar.Tactics.V1.Derived.fst.checked
-    EXTRACT         FStar.Tactics.V1.Logic.fst.checked
-    EXTRACT         FStar.WellFounded.fst.checked
-    EXTRACT         FStar.WellFounded.Util.fst.checked
-    EXTRACT         FStar.DependentMap.fst.checked
-    EXTRACT         FStar.Monotonic.DependentMap.fst.checked
-    EXTRACT         LowStar.Comment.fst.checked
-    EXTRACT         FStar.Tactics.PrettifyType.fst.checked
-    EXTRACT         FStar.Tactics.Canon.Lemmas.fst.checked
-    EXTRACT         FStar.Algebra.CommMonoid.Equiv.fst.checked
-    EXTRACT         FStar.GhostSet.fst.checked
-    EXTRACT         FStar.PartialMap.fst.checked
-    EXTRACT         FStar.PCM.fst.checked
-    EXTRACT         FStar.Universe.PCM.fst.checked
-    EXTRACT         FStar.Cardinality.Cantor.fst.checked
-    EXTRACT         FStar.Cardinality.Universes.fst.checked
-    EXTRACT         FStar.Pure.BreakVC.fst.checked
-    EXTRACT         FStar.MarkovsPrinciple.fst.checked
-    EXTRACT         FStar.RBSet.fst.checked
-    EXTRACT         FStar.Algebra.CommMonoid.fst.checked
-    EXTRACT         FStar.Sequence.Base.fst.checked
-    EXTRACT         FStar.Sequence.Util.fst.checked
-    EXTRACT         FStar.Sequence.Ambient.fst.checked
-    EXTRACT         FStar.Sequence.fst.checked
-    EXTRACT         FStar.Sequence.Permutation.fst.checked
-    EXTRACT         FStar.Tactics.Canon.fst.checked
-    EXTRACT         FStar.Math.Euclid.fst.checked
-    EXTRACT         FStar.Tactics.CanonCommSwaps.fst.checked
-    EXTRACT         FStar.Tactics.CanonCommMonoid.fst.checked
-    EXTRACT         LowStar.BufferView.Down.fst.checked
-    EXTRACT         LowStar.BufferView.Up.fst.checked
-    EXTRACT         FStar.Ref.fst.checked
-    EXTRACT         FStar.Tactics.Arith.fst.checked
-    EXTRACT         LowStar.Regional.Instances.fst.checked
-    EXTRACT         FStar.ReflexiveTransitiveClosure.fst.checked
-    EXTRACT         FStar.LexicographicOrdering.fst.checked
-    EXTRACT         FStar.Sequence.Seq.fst.checked
-    EXTRACT         FStar.Reflection.Formula.fst.checked
-    EXTRACT         FStar.Tactics.CanonCommSemiring.fst.checked
-    EXTRACT         FStar.Tactics.CheckLN.fst.checked
-    EXTRACT         FStar.Algebra.Monoid.fst.checked
-    EXTRACT         FStar.Tactics.CanonMonoid.fst.checked
-    EXTRACT         FStar.Axiomatic.Array.fst.checked
-    EXTRACT         FStar.Relational.Relational.fst.checked
-    EXTRACT         FStar.Tactics.MkProjectors.fst.checked
-    EXTRACT         FStar.Fin.fst.checked
-    EXTRACT         FStar.SquashProperties.fst.checked
-    EXTRACT         FStar.MRef.fst.checked
-    EXTRACT         LowStar.ImmutableBuffer.fst.checked
-    EXTRACT         FStar.IntegerIntervals.fst.checked
-    EXTRACT         FStar.Seq.Equiv.fst.checked
-    EXTRACT         FStar.Seq.Permutation.fst.checked
-    EXTRACT         FStar.Algebra.CommMonoid.Fold.fst.checked
-    EXTRACT         FStar.RefinementExtensionality.fst.checked
-    EXTRACT         FStar.Int.Cast.Full.fst.checked
-    EXTRACT         FStar.Tactics.Simplifier.fst.checked
-    EXTRACT         FStar.Monotonic.Map.fst.checked
-    EXTRACT         LowStar.BufferCompat.fst.checked
-    EXTRACT         FStar.Matrix.fst.checked
-    EXTRACT         FStar.Modifies.fst.checked
-    EXTRACT         LowStar.ToFStarBuffer.fst.checked
-    EXTRACT         FStar.Monotonic.Seq.fst.checked
-    EXTRACT         FStar.Class.Printable.fst.checked
-    EXTRACT         FStar.Seq.Sorted.fst.checked
-    EXTRACT         FStar.List.Pure.Base.fst.checked
-    EXTRACT         FStar.OrdSetProps.fst.checked
-    EXTRACT         FStar.Tactics.CanonCommMonoidSimple.fst.checked
-    EXTRACT         FStar.Class.Eq.fst.checked
-    EXTRACT         LowStar.UninitializedBuffer.fst.checked
-    EXTRACT         FStar.Pointer.Base.fst.checked
-    EXTRACT         FStar.FunctionalQueue.fst.checked
-    EXTRACT         FStar.Reflection.Typing.fst.checked
-    EXTRACT         FStar.IFC.fst.checked
-    EXTRACT         FStar.Reflection.fst.checked
-    EXTRACT         FStar.Relational.Comp.fst.checked
-    EXTRACT         FStar.Witnessed.Core.fst.checked
-    EXTRACT         FStar.Tactics.BreakVC.fst.checked
-    EXTRACT         FStar.Tactics.Logic.fst.checked
-    EXTRACT         FStar.Tactics.PatternMatching.fst.checked
-    EXTRACT         FStar.Pointer.fst.checked
-    EXTRACT         FStar.Error.fst.checked
-    EXTRACT         FStar.Algebra.CommMonoid.Fold.Nested.fst.checked
-    EXTRACT         FStar.Tactics.Derived.fst.checked
-    EXTRACT         FStar.Real.Old.fst.checked
-    EXTRACT         FStar.Parse.fst.checked
-    EXTRACT         FStar.TwoLevelHeap.fst.checked
-    EXTRACT         FStar.Math.Fermat.fst.checked
-    EXTRACT         FStar.Tactics.CanonCommMonoidSimple.Equiv.fst.checked
-    EXTRACT         LowStar.ConstBuffer.fst.checked
-    EXTRACT         FStar.Class.TotalOrder.Raw.fst.checked
-    EXTRACT         FStar.WellFoundedRelation.fst.checked
-    EXTRACT         FStar.Tactics.Parametricity.fst.checked
-    EXTRACT         FStar.ConstantTime.Integers.fst.checked
-    EXTRACT         FStar.Tactics.SyntaxHelpers.fst.checked
-    EXTRACT         FStar.Array.fst.checked
-    EXTRACT         FStar.FiniteMap.Ambient.fst.checked
-   INSTALL          STAGE 2
-> compiled  fstar.2025.08.07
-> removed   fstar.2025.08.07
Processing  4/4: [fstar: make install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "make" "PREFIX=/home/opam/.opam/4.14" "install" (CWD=/home/opam/.opam/4.14/.opam-switch/build/fstar.2025.08.07)
-   INSTALL          STAGE 2
-> installed fstar.2025.08.07
Done.

<><> fstar.2025.08.07 installed successfully ><><><><><><><><><><><><><><><><><>
=> F* requires specific versions of Z3 to work correctly, and will refuse to run
   if the version string does not match. You should have z3-4.8.5 and z3-4.13.3
   in your $PATH. For details, see
   https://github.com/FStarLang/FStar/blob/master/INSTALL.md#runtime-dependency-particular-version-of-z3.
# To update the current shell environment, run: eval $(opam env)
2026-01-13 18:51.17 ---> saved as "50b2222f3d8edcac067345006b7d2ccccfa9a66d64bbf687c4468e2610977c30"
Job succeeded
2026-01-13 18:51.22: Job succeeded