From 4d2d61df451b86095017fa6435e2e7c843f2df93 Mon Sep 17 00:00:00 2001 From: konard Date: Fri, 1 May 2026 09:01:49 +0000 Subject: [PATCH 1/2] Initial commit with task details Adding .gitkeep for PR creation (default mode). This file will be removed when the task is complete. Issue: https://github.com/linksplatform/doublets-web/issues/7 --- .gitkeep | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitkeep diff --git a/.gitkeep b/.gitkeep new file mode 100644 index 0000000..a54909b --- /dev/null +++ b/.gitkeep @@ -0,0 +1 @@ +# .gitkeep file auto-generated at 2026-05-01T09:01:48.990Z for PR creation at branch issue-7-09f254443cff for issue https://github.com/linksplatform/doublets-web/issues/7 \ No newline at end of file From f8ac49ce66bffc0c3f506028a83073e8ecd76822 Mon Sep 17 00:00:00 2001 From: konard Date: Fri, 1 May 2026 09:10:43 +0000 Subject: [PATCH 2/2] Correct license metadata to Unlicense --- .gitkeep | 1 - CHANGELOG.md | 4 + Cargo.lock | 2 +- Cargo.toml | 4 +- LICENSE | 24 + LICENSE_APACHE | 176 - LICENSE_MIT | 25 - README.md | 7 +- docs/case-studies/issue-7/README.md | 87 + .../issue-7/evidence/UNLICENSE.txt | 24 + .../evidence/cargo-metadata-locked.json | 1 + .../issue-7/evidence/issue-7-comments.json | 1 + .../issue-7/evidence/issue-7.json | 1 + .../issue-7/evidence/npm-package-json.html | 407 ++ .../issue-7/evidence/pr-8-comments.json | 1 + .../evidence/pr-8-review-comments.json | 1 + .../issue-7/evidence/pr-8-reviews.json | 1 + docs/case-studies/issue-7/evidence/pr-8.json | 1 + .../issue-7/evidence/spdx-unlicense.json | 26 + .../cargo-check-locked-tests-all-features.log | 48 + ...cargo-clippy-locked-tests-all-features.log | 2 + .../issue-7/logs/cargo-fmt-check.log | 0 .../issue-7/logs/cargo-install-wasm-pack.log | 334 ++ .../issue-7/logs/cargo-test-lib-host.log | 9 + .../logs/cargo-test-license-metadata.log | 62 + .../issue-7/logs/npm-pack-dry-run.log | 21 + .../package-version-license-from-metadata.log | 5 + .../issue-7/logs/rustup-target-add-wasm32.log | 1 + .../issue-7/logs/wasm-pack-build.log | 843 +++ .../issue-7/logs/wasm-pack-test-node.log | 4585 +++++++++++++++++ testapp/LICENSE | 24 + testapp/LICENSE-APACHE | 201 - testapp/LICENSE-MIT | 25 - testapp/package-lock.json | 2 +- testapp/package.json | 2 +- tests/license_metadata.rs | 60 + 36 files changed, 6580 insertions(+), 438 deletions(-) delete mode 100644 .gitkeep create mode 100644 LICENSE delete mode 100644 LICENSE_APACHE delete mode 100644 LICENSE_MIT create mode 100644 docs/case-studies/issue-7/README.md create mode 100644 docs/case-studies/issue-7/evidence/UNLICENSE.txt create mode 100644 docs/case-studies/issue-7/evidence/cargo-metadata-locked.json create mode 100644 docs/case-studies/issue-7/evidence/issue-7-comments.json create mode 100644 docs/case-studies/issue-7/evidence/issue-7.json create mode 100644 docs/case-studies/issue-7/evidence/npm-package-json.html create mode 100644 docs/case-studies/issue-7/evidence/pr-8-comments.json create mode 100644 docs/case-studies/issue-7/evidence/pr-8-review-comments.json create mode 100644 docs/case-studies/issue-7/evidence/pr-8-reviews.json create mode 100644 docs/case-studies/issue-7/evidence/pr-8.json create mode 100644 docs/case-studies/issue-7/evidence/spdx-unlicense.json create mode 100644 docs/case-studies/issue-7/logs/cargo-check-locked-tests-all-features.log create mode 100644 docs/case-studies/issue-7/logs/cargo-clippy-locked-tests-all-features.log create mode 100644 docs/case-studies/issue-7/logs/cargo-fmt-check.log create mode 100644 docs/case-studies/issue-7/logs/cargo-install-wasm-pack.log create mode 100644 docs/case-studies/issue-7/logs/cargo-test-lib-host.log create mode 100644 docs/case-studies/issue-7/logs/cargo-test-license-metadata.log create mode 100644 docs/case-studies/issue-7/logs/npm-pack-dry-run.log create mode 100644 docs/case-studies/issue-7/logs/package-version-license-from-metadata.log create mode 100644 docs/case-studies/issue-7/logs/rustup-target-add-wasm32.log create mode 100644 docs/case-studies/issue-7/logs/wasm-pack-build.log create mode 100644 docs/case-studies/issue-7/logs/wasm-pack-test-node.log create mode 100644 testapp/LICENSE delete mode 100644 testapp/LICENSE-APACHE delete mode 100644 testapp/LICENSE-MIT create mode 100644 tests/license_metadata.rs diff --git a/.gitkeep b/.gitkeep deleted file mode 100644 index a54909b..0000000 --- a/.gitkeep +++ /dev/null @@ -1 +0,0 @@ -# .gitkeep file auto-generated at 2026-05-01T09:01:48.990Z for PR creation at branch issue-7-09f254443cff for issue https://github.com/linksplatform/doublets-web/issues/7 \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index d2ea2f3..c131908 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.1.2 + +- Corrected project licensing metadata and license files to The Unlicense. + ## 0.1.1 - Switched `doublets-web` to the stable `doublets = 0.3.0` crate from `doublets-rs`. diff --git a/Cargo.lock b/Cargo.lock index 60abe4c..3610371 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -105,7 +105,7 @@ dependencies = [ [[package]] name = "doublets-web" -version = "0.1.1" +version = "0.1.2" dependencies = [ "console_error_panic_hook", "doublets", diff --git a/Cargo.toml b/Cargo.toml index c189c12..f4ef18b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "doublets-web" -version = "0.1.1" +version = "0.1.2" authors = [ "uselessgoddess", "Linksplatform Team ", @@ -10,7 +10,7 @@ rust-version = "1.85" description = "WebAssembly bindings for the LinksPlatform Doublets associative storage library." readme = "README.md" repository = "https://github.com/linksplatform/doublets-web" -license = "MIT OR Apache-2.0" +license = "Unlicense" keywords = ["associative", "doublets", "linksplatform", "wasm", "webassembly"] categories = ["api-bindings", "data-structures", "wasm"] diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..efb9808 --- /dev/null +++ b/LICENSE @@ -0,0 +1,24 @@ +This is free and unencumbered software released into the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or +distribute this software, either in source code form or as a compiled +binary, for any purpose, commercial or non-commercial, and by any +means. + +In jurisdictions that recognize copyright laws, the author or authors +of this software dedicate any and all copyright interest in the +software to the public domain. We make this dedication for the benefit +of the public at large and to the detriment of our heirs and +successors. We intend this dedication to be an overt act of +relinquishment in perpetuity of all present and future rights to this +software under copyright law. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR +OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + +For more information, please refer to diff --git a/LICENSE_APACHE b/LICENSE_APACHE deleted file mode 100644 index 1b5ec8b..0000000 --- a/LICENSE_APACHE +++ /dev/null @@ -1,176 +0,0 @@ - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS diff --git a/LICENSE_MIT b/LICENSE_MIT deleted file mode 100644 index 5eba688..0000000 --- a/LICENSE_MIT +++ /dev/null @@ -1,25 +0,0 @@ -Copyright (c) 2018 X - -Permission is hereby granted, free of charge, to any -person obtaining a copy of this software and associated -documentation files (the "Software"), to deal in the -Software without restriction, including without -limitation the rights to use, copy, modify, merge, -publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software -is furnished to do so, subject to the following -conditions: - -The above copyright notice and this permission notice -shall be included in all copies or substantial portions -of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED -TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A -PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT -SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR -IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. diff --git a/README.md b/README.md index ec30a3e..6f38961 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![CI/CD Pipeline](https://github.com/linksplatform/doublets-web/actions/workflows/release.yml/badge.svg?branch=master)](https://github.com/linksplatform/doublets-web/actions/workflows/release.yml?query=branch%3Amaster) [![npm package](https://img.shields.io/npm/v/doublets-web.svg)](https://www.npmjs.com/package/doublets-web) [![GitHub Release](https://img.shields.io/github/v/release/linksplatform/doublets-web.svg)](https://github.com/linksplatform/doublets-web/releases) -[![License](https://img.shields.io/badge/license-MIT%20OR%20Apache--2.0-blue.svg)](https://github.com/linksplatform/doublets-web#license) +[![License](https://img.shields.io/badge/license-Unlicense-blue.svg)](https://github.com/linksplatform/doublets-web#license) WebAssembly bindings for the LinksPlatform [doublets](https://github.com/linksplatform/doublets-rs) associative storage library. @@ -56,7 +56,4 @@ The workflow uses GitHub Actions OIDC (`id-token: write`) and `npm publish` from ## License -Licensed under either of: - -- Apache License, Version 2.0 ([LICENSE_APACHE](LICENSE_APACHE)) -- MIT license ([LICENSE_MIT](LICENSE_MIT)) +Released into the public domain under [The Unlicense](LICENSE). diff --git a/docs/case-studies/issue-7/README.md b/docs/case-studies/issue-7/README.md new file mode 100644 index 0000000..233b451 --- /dev/null +++ b/docs/case-studies/issue-7/README.md @@ -0,0 +1,87 @@ +# Issue 7 Case Study: Correct Project License to The Unlicense + +Date: 2026-05-01 + +Issue: https://github.com/linksplatform/doublets-web/issues/7 +Pull request: https://github.com/linksplatform/doublets-web/pull/8 + +## Goal + +Correct every repository-owned license surface from the previous MIT OR Apache-2.0 metadata to The Unlicense, preserve the supporting evidence under `docs/case-studies/issue-7`, and add a regression check that keeps the public metadata aligned. + +## Evidence Collected + +- Issue 7 metadata and comments are saved under `evidence/issue-7.json` and `evidence/issue-7-comments.json`. +- Pull request 8 metadata, comments, reviews, and review comments are saved under `evidence/pr-8*.json`. +- The SPDX record for `Unlicense` is saved in `evidence/spdx-unlicense.json`. +- The canonical Unlicense text is saved in `evidence/UNLICENSE.txt`. +- npm package metadata guidance was saved in `evidence/npm-package-json.html`. + +## Timeline + +- 2021-12-09: `linksplatform/doublets-web` was created. GitHub API metadata reported the repository license as Apache-2.0 before this fix. +- 2026-05-01 05:28 UTC: PR 6 merged the CI/CD revival and left the crate metadata, README badge, README license section, and test app metadata on MIT OR Apache-2.0. +- 2026-05-01 09:01 UTC: Issue 7 was opened requesting that the license be corrected to Unlicense/Public Domain in all places. +- 2026-05-01 09:01 UTC: Draft PR 8 was created for the issue. +- 2026-05-01: This investigation found no issue comments, PR comments, reviews, or review comments requiring additional constraints. + +## Requirements + +- Change the main crate metadata to the SPDX identifier `Unlicense`. +- Replace root MIT/Apache license files with the Unlicense text. +- Update README badge and license section. +- Update the `testapp` metadata and license files because they are tracked repository content. +- Preserve raw issue/PR/evidence data under `docs/case-studies/issue-7`. +- Include a repeatable check that fails when old license markers come back. +- Bump the package version so the release workflow has a new npm package version to publish. + +## Root Cause + +The repository still contained the dual-license setup from earlier project scaffolding and CI modernization work: + +- `Cargo.toml` declared `license = "MIT OR Apache-2.0"`. +- `README.md` advertised an MIT/Apache badge and linked `LICENSE_MIT` and `LICENSE_APACHE`. +- Root and `testapp` license files contained MIT and Apache-2.0 texts. +- `testapp/package.json` and `testapp/package-lock.json` declared `(MIT OR Apache-2.0)`. + +Because these surfaces are maintained independently, changing only one file would leave package metadata, GitHub license detection, or documentation inconsistent. + +## External Facts + +SPDX lists the short license identifier as `Unlicense`, with the full name "The Unlicense"; its metadata marks the license as OSI approved and FSF libre. npm package metadata uses SPDX license expressions in the `license` field, so `Unlicense` is the appropriate package string. + +## Implemented + +- Added root `LICENSE` with the canonical Unlicense text. +- Added `testapp/LICENSE` with the same text. +- Removed root `LICENSE_MIT` and `LICENSE_APACHE`. +- Removed `testapp/LICENSE-MIT` and `testapp/LICENSE-APACHE`. +- Updated `Cargo.toml` to `license = "Unlicense"` and version `0.1.2`. +- Updated `Cargo.lock` for the new crate version. +- Updated README license badge and license section. +- Updated `testapp/package.json` and `testapp/package-lock.json` to `Unlicense`. +- Added `tests/license_metadata.rs` to assert the expected license metadata and absence of old license markers. +- Removed the auto-generated `.gitkeep` placeholder from the draft PR. + +## Solution Plan for Similar Repositories + +- Treat license changes as release metadata changes, not only documentation edits. +- Use the SPDX identifier in package manager metadata. +- Keep one canonical license file at the package root whenever possible. +- Add a lightweight test or lint that scans maintained metadata files for expected license values. +- Verify generated package output with `wasm-pack build` and `npm pack --dry-run` so published artifacts include the corrected license. + +## Verification + +Local verification completed successfully: + +- `cargo fmt --all -- --check` +- `cargo check --locked --tests --all-features` +- `cargo test --locked --lib --target "$(rustc -vV | sed -n 's/^host: //p')"` +- `cargo test --locked --test license_metadata` +- `cargo clippy --locked --tests --all-features -- -D warnings` +- `wasm-pack build --release --target bundler --out-dir pkg` +- `wasm-pack test --node` +- `npm pack --dry-run` from `pkg/` + +The generated npm package metadata was confirmed as `doublets-web@0.1.2` with `license: Unlicense`, and the dry-run tarball includes a single `LICENSE` file. Logs are saved under `logs/`. diff --git a/docs/case-studies/issue-7/evidence/UNLICENSE.txt b/docs/case-studies/issue-7/evidence/UNLICENSE.txt new file mode 100644 index 0000000..efb9808 --- /dev/null +++ b/docs/case-studies/issue-7/evidence/UNLICENSE.txt @@ -0,0 +1,24 @@ +This is free and unencumbered software released into the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or +distribute this software, either in source code form or as a compiled +binary, for any purpose, commercial or non-commercial, and by any +means. + +In jurisdictions that recognize copyright laws, the author or authors +of this software dedicate any and all copyright interest in the +software to the public domain. We make this dedication for the benefit +of the public at large and to the detriment of our heirs and +successors. We intend this dedication to be an overt act of +relinquishment in perpetuity of all present and future rights to this +software under copyright law. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR +OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + +For more information, please refer to diff --git a/docs/case-studies/issue-7/evidence/cargo-metadata-locked.json b/docs/case-studies/issue-7/evidence/cargo-metadata-locked.json new file mode 100644 index 0000000..0504ea9 --- /dev/null +++ b/docs/case-studies/issue-7/evidence/cargo-metadata-locked.json @@ -0,0 +1 @@ +{"packages":[{"name":"doublets-web","version":"0.1.2","id":"path+file:///tmp/gh-issue-solver-1777626107940#doublets-web@0.1.2","license":"Unlicense","license_file":null,"description":"WebAssembly bindings for the LinksPlatform Doublets associative storage library.","source":null,"dependencies":[{"name":"console_error_panic_hook","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.1","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"doublets","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3.0","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"js-sys","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasm-bindgen","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.2","kind":null,"rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wee_alloc","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.4.5","kind":null,"rename":null,"optional":true,"uses_default_features":true,"features":[],"target":null,"registry":null},{"name":"wasm-bindgen-test","source":"registry+https://github.com/rust-lang/crates.io-index","req":"^0.3","kind":"dev","rename":null,"optional":false,"uses_default_features":true,"features":[],"target":null,"registry":null}],"targets":[{"kind":["cdylib","rlib"],"crate_types":["cdylib","rlib"],"name":"doublets_web","src_path":"/tmp/gh-issue-solver-1777626107940/src/lib.rs","edition":"2021","doc":true,"doctest":true,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"license_metadata","src_path":"/tmp/gh-issue-solver-1777626107940/tests/license_metadata.rs","edition":"2021","doc":false,"doctest":false,"test":true},{"kind":["test"],"crate_types":["bin"],"name":"web","src_path":"/tmp/gh-issue-solver-1777626107940/tests/web.rs","edition":"2021","doc":false,"doctest":false,"test":true}],"features":{"console_error_panic_hook":["dep:console_error_panic_hook"],"default":["console_error_panic_hook"],"wee_alloc":["dep:wee_alloc"]},"manifest_path":"/tmp/gh-issue-solver-1777626107940/Cargo.toml","metadata":null,"publish":null,"authors":["uselessgoddess","Linksplatform Team "],"categories":["api-bindings","data-structures","wasm"],"keywords":["associative","doublets","linksplatform","wasm","webassembly"],"readme":"README.md","repository":"https://github.com/linksplatform/doublets-web","homepage":null,"documentation":null,"edition":"2021","links":null,"default_run":null,"rust_version":"1.85"}],"workspace_members":["path+file:///tmp/gh-issue-solver-1777626107940#doublets-web@0.1.2"],"workspace_default_members":["path+file:///tmp/gh-issue-solver-1777626107940#doublets-web@0.1.2"],"resolve":null,"target_directory":"/tmp/gh-issue-solver-1777626107940/target","build_directory":"/tmp/gh-issue-solver-1777626107940/target","version":1,"workspace_root":"/tmp/gh-issue-solver-1777626107940","metadata":null} diff --git a/docs/case-studies/issue-7/evidence/issue-7-comments.json b/docs/case-studies/issue-7/evidence/issue-7-comments.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/docs/case-studies/issue-7/evidence/issue-7-comments.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/docs/case-studies/issue-7/evidence/issue-7.json b/docs/case-studies/issue-7/evidence/issue-7.json new file mode 100644 index 0000000..4ba1224 --- /dev/null +++ b/docs/case-studies/issue-7/evidence/issue-7.json @@ -0,0 +1 @@ +{"url":"https://api.github.com/repos/linksplatform/doublets-web/issues/7","repository_url":"https://api.github.com/repos/linksplatform/doublets-web","labels_url":"https://api.github.com/repos/linksplatform/doublets-web/issues/7/labels{/name}","comments_url":"https://api.github.com/repos/linksplatform/doublets-web/issues/7/comments","events_url":"https://api.github.com/repos/linksplatform/doublets-web/issues/7/events","html_url":"https://github.com/linksplatform/doublets-web/issues/7","id":4363656861,"node_id":"I_kwDOGgeHac8AAAABBBgenQ","number":7,"title":"Our License is Unlicense (Public Domain) (fix in all places)","user":{"login":"konard","id":1431904,"node_id":"MDQ6VXNlcjE0MzE5MDQ=","avatar_url":"https://avatars.githubusercontent.com/u/1431904?v=4","gravatar_id":"","url":"https://api.github.com/users/konard","html_url":"https://github.com/konard","followers_url":"https://api.github.com/users/konard/followers","following_url":"https://api.github.com/users/konard/following{/other_user}","gists_url":"https://api.github.com/users/konard/gists{/gist_id}","starred_url":"https://api.github.com/users/konard/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/konard/subscriptions","organizations_url":"https://api.github.com/users/konard/orgs","repos_url":"https://api.github.com/users/konard/repos","events_url":"https://api.github.com/users/konard/events{/privacy}","received_events_url":"https://api.github.com/users/konard/received_events","type":"User","user_view_type":"public","site_admin":false},"labels":[{"id":3627364811,"node_id":"LA_kwDOGgeHac7YNTHL","url":"https://api.github.com/repos/linksplatform/doublets-web/labels/bug","name":"bug","color":"d73a4a","default":true,"description":"Something isn't working"}],"state":"open","locked":false,"assignees":[],"milestone":null,"comments":0,"created_at":"2026-05-01T09:01:16Z","updated_at":"2026-05-01T09:01:16Z","closed_at":null,"assignee":null,"author_association":"MEMBER","type":{"id":1955103,"node_id":"IT_kwDOAOaoNc4AHdUf","name":"Bug","description":"An unexpected problem or behavior","color":"red","created_at":"2024-01-25T15:44:33Z","updated_at":"2024-07-26T10:33:45Z","is_enabled":true},"active_lock_reason":null,"sub_issues_summary":{"total":0,"completed":0,"percent_completed":0},"issue_dependencies_summary":{"blocked_by":0,"total_blocked_by":0,"blocking":0,"total_blocking":0},"body":"We need to download all logs and data related about the issue to this repository, make sure we compile that data to `./docs/case-studies/issue-{id}` folder, and use it to do deep case study analysis (also make sure to search online for additional facts and data), in which we will reconstruct timeline/sequence of events, list of each and all requirements from the issue, find root causes of the each problem, and propose possible solutions and solution plans for each requirement (we should also check known existing components/libraries, that solve similar problem or can help in solutions).\n\nIf there is not enough data to find actual root cause, add debug output and verbose mode if not present, that will allow us to find root cause on next iteration.\n\nIf issue related to any other repository/project, where we can report issues on GitHub, please do so. Each issue must contain reproducible examples, workarounds and suggestions for fix the issue in code.","closed_by":null,"reactions":{"url":"https://api.github.com/repos/linksplatform/doublets-web/issues/7/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/linksplatform/doublets-web/issues/7/timeline","performed_via_github_app":null,"state_reason":null,"pinned_comment":null} \ No newline at end of file diff --git a/docs/case-studies/issue-7/evidence/npm-package-json.html b/docs/case-studies/issue-7/evidence/npm-package-json.html new file mode 100644 index 0000000..82cdfff --- /dev/null +++ b/docs/case-studies/issue-7/evidence/npm-package-json.html @@ -0,0 +1,407 @@ +package.json | npm Docs

package.json

Specifics of npm's package.json handling

Select CLI Version:

Description

+

This document is all you need to know about what's required in your package.json file. It must be actual JSON, not just a JavaScript object literal.

+

A lot of the behavior described in this document is affected by the config settings described in config.

+

name

+

If you plan to publish your package, the most important things in your package.json are the name and version fields as they will be required. The name and version together form an identifier that is assumed to be completely unique. Changes to the package should come along with changes to the version. If you don't plan to publish your package, the name and version fields are optional.

+

The name is what your thing is called.

+

Some rules:

+
    +
  • The name must be less than or equal to 214 characters. This includes the scope for scoped packages.
  • +
  • The names of scoped packages can begin with a dot or an underscore. This is not permitted without a scope.
  • +
  • New packages must not have uppercase letters in the name.
  • +
  • The name ends up being part of a URL, an argument on the command line, and a folder name. Therefore, the name can't contain any non-URL-safe characters.
  • +
+

Some tips:

+
    +
  • Don't use the same name as a core Node module.
  • +
  • Don't put "js" or "node" in the name. It's assumed that it's js, since you're writing a package.json file, and you can specify the engine using the "engines" field. (See below.)
  • +
  • The name will probably be passed as an argument to require(), so it should be something short, but also reasonably descriptive.
  • +
  • You may want to check the npm registry to see if there's something by that name already, before you get too attached to it. https://www.npmjs.com/
  • +
+

A name can be optionally prefixed by a scope, e.g. @myorg/mypackage. See scope for more detail.

+

version

+

If you plan to publish your package, the most important things in your package.json are the name and version fields as they will be required. The name and version together form an identifier that is assumed to be completely unique. Changes to the package should come along with changes to the version. If you don't plan to publish your package, the name and version fields are optional.

+

Version must be parseable by node-semver, which is bundled with npm as a dependency. (npm install semver to use it yourself.)

+

description

+

Put a description in it. It's a string. This helps people discover your package, as it's listed in npm search.

+

keywords

+

Put keywords in it. It's an array of strings. This helps people discover your package as it's listed in npm search.

+

homepage

+

The URL to the project homepage.

+

Example:

+
"homepage": "https://github.com/owner/project#readme"
+

bugs

+

The URL to your project's issue tracker and / or the email address to which issues should be reported. These are helpful for people who encounter issues with your package.

+

It should look like this:

+
{
"bugs": {
"url": "https://github.com/owner/project/issues",
"email": "project@hostname.com"
}
}
+

You can specify either one or both values. If you want to provide only a URL, you can specify the value for "bugs" as a simple string instead of an object.

+

If a URL is provided, it will be used by the npm bugs command.

+

license

+

You should specify a license for your package so that people know how they are permitted to use it, and any restrictions you're placing on it.

+

If you're using a common license such as BSD-2-Clause or MIT, add a current SPDX license identifier for the license you're using, like this:

+
{
"license": "BSD-3-Clause"
}
+

You can check the full list of SPDX license IDs. Ideally you should pick one that is OSI approved.

+

If your package is licensed under multiple common licenses, use an SPDX license expression syntax version 2.0 string, like this:

+
{
"license": "(ISC OR GPL-3.0)"
}
+

If you are using a license that hasn't been assigned an SPDX identifier, or if you are using a custom license, use a string value like this one:

+
{
"license": "SEE LICENSE IN <filename>"
}
+

Then include a file named <filename> at the top level of the package.

+

Some old packages used license objects or a "licenses" property containing an array of license objects:

+
// Not valid metadata
{
"license" : {
"type" : "ISC",
"url" : "https://opensource.org/licenses/ISC"
}
}
+
// Not valid metadata
{
"licenses" : [
{
"type": "MIT",
"url": "https://www.opensource.org/licenses/mit-license.php"
},
{
"type": "Apache-2.0",
"url": "https://opensource.org/licenses/apache2.0.php"
}
]
}
+

Those styles are now deprecated. Instead, use SPDX expressions, like this:

+
{
"license": "ISC"
}
+
{
"license": "(MIT OR Apache-2.0)"
}
+

Finally, if you do not wish to grant others the right to use a private or unpublished package under any terms:

+
{
"license": "UNLICENSED"
}
+

Consider also setting "private": true to prevent accidental publication.

+

people fields: author, contributors

+

The "author" is one person. "contributors" is an array of people. A "person" is an object with a "name" field and optionally "url" and "email", like this:

+
{
"name": "Barney Rubble",
"email": "b@rubble.com",
"url": "http://barnyrubble.tumblr.com/"
}
+

Or you can shorten that all into a single string, and npm will parse it for you:

+
{
"author": "Barney Rubble <b@rubble.com> (http://barnyrubble.tumblr.com/)"
}
+

Both email and url are optional either way.

+

npm also sets a top-level "maintainers" field with your npm user info.

+

funding

+

You can specify an object containing a URL that provides up-to-date information about ways to help fund development of your package, a string URL, or an array of objects and string URLs:

+
{
"funding": {
"type": "individual",
"url": "http://example.com/donate"
}
}
+
{
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/my-account"
}
}
+
{
"funding": "http://example.com/donate"
}
+
{
"funding": [
{
"type": "individual",
"url": "http://example.com/donate"
},
"http://example.com/donateAlso",
{
"type": "patreon",
"url": "https://www.patreon.com/my-account"
}
]
}
+

Users can use the npm fund subcommand to list the funding URLs of all dependencies of their project, direct and indirect. A shortcut to visit each funding URL is also available when providing the project name such as: npm fund <projectname> (when there are multiple URLs, the first one will be visited)

+

files

+

The optional files field is an array of file patterns that describes the entries to be included when your package is installed as a dependency. File patterns follow a similar syntax to .gitignore, but reversed: including a file, directory, or glob pattern (*, **/*, and such) will make it so that file is included in the tarball when it's packed. Omitting the field will make it default to ["*"], which means it will include all files.

+

Some special files and directories are also included or excluded regardless of whether they exist in the files array (see below).

+

You can also provide a .npmignore file in the root of your package or in subdirectories, which will keep files from being included. At the root of your package it will not override the "files" field, but in subdirectories it will. The .npmignore file works just like a .gitignore. If there is a .gitignore file, and .npmignore is missing, .gitignore's contents will be used instead.

+

Certain files are always included, regardless of settings:

+
    +
  • package.json
  • +
  • README
  • +
  • LICENSE / LICENCE
  • +
  • The file in the "main" field
  • +
  • The file(s) in the "bin" field
  • +
+

README & LICENSE can have any case and extension.

+

Some files are always ignored by default:

+
    +
  • *.orig
  • +
  • .*.swp
  • +
  • .DS_Store
  • +
  • ._*
  • +
  • .git
  • +
  • .hg
  • +
  • .lock-wscript
  • +
  • .npmrc
  • +
  • .svn
  • +
  • .wafpickle-N
  • +
  • CVS
  • +
  • config.gypi
  • +
  • node_modules
  • +
  • npm-debug.log
  • +
  • package-lock.json (use npm-shrinkwrap.json if you wish it to be published)
  • +
  • pnpm-lock.yaml
  • +
  • yarn.lock
  • +
+

Most of these ignored files can be included specifically if included in the files globs. Exceptions to this are:

+
    +
  • .git
  • +
  • .npmrc
  • +
  • node_modules
  • +
  • package-lock.json
  • +
  • pnpm-lock.yaml
  • +
  • yarn.lock
  • +
+

These can not be included.

+

exports

+

The "exports" provides a modern alternative to "main" allowing multiple entry points to be defined, conditional entry resolution support between environments, and preventing any other entry points besides those defined in "exports". This encapsulation allows module authors to clearly define the public interface for their package. For more details see the node.js documentation on package entry points

+

main

+

The main field is a module ID that is the primary entry point to your program. That is, if your package is named foo, and a user installs it, and then does require("foo"), then your main module's exports object will be returned.

+

This should be a module relative to the root of your package folder.

+

For most modules, it makes the most sense to have a main script and often not much else.

+

If main is not set, it defaults to index.js in the package's root folder.

+

browser

+

If your module is meant to be used client-side the browser field should be used instead of the main field. This is helpful to hint users that it might rely on primitives that aren't available in Node.js modules. (e.g. window)

+

bin

+

A lot of packages have one or more executable files that they'd like to install into the PATH. npm makes this pretty easy (in fact, it uses this feature to install the "npm" executable.)

+

To use this, supply a bin field in your package.json which is a map of command name to local file name. When this package is installed globally, that file will be either linked inside the global bins directory or a cmd (Windows Command File) will be created which executes the specified file in the bin field, so it is available to run by name or name.cmd (on Windows PowerShell). When this package is installed as a dependency in another package, the file will be linked where it will be available to that package either directly by npm exec or by name in other scripts when invoking them via npm run-script.

+

For example, myapp could have this:

+
{
"bin": {
"myapp": "bin/cli.js"
}
}
+

So, when you install myapp, in case of unix-like OS it'll create a symlink from the cli.js script to /usr/local/bin/myapp and in case of windows it will create a cmd file usually at C:\Users\{Username}\AppData\Roaming\npm\myapp.cmd which runs the cli.js script.

+

If you have a single executable, and its name should be the name of the package, then you can just supply it as a string. For example:

+
{
"name": "my-program",
"version": "1.2.5",
"bin": "path/to/program"
}
+

would be the same as this:

+
{
"name": "my-program",
"version": "1.2.5",
"bin": {
"my-program": "path/to/program"
}
}
+

Please make sure that your file(s) referenced in bin starts with #!/usr/bin/env node, otherwise the scripts are started without the node executable!

+

Note that you can also set the executable files using directories.bin.

+

See folders for more info on executables.

+

man

+

Specify either a single file or an array of filenames to put in place for the man program to find.

+

If only a single file is provided, then it's installed such that it is the result from man <pkgname>, regardless of its actual filename. For example:

+
{
"name": "foo",
"version": "1.2.3",
"description": "A packaged foo fooer for fooing foos",
"main": "foo.js",
"man": "./man/doc.1"
}
+

would link the ./man/doc.1 file in such that it is the target for man foo

+

If the filename doesn't start with the package name, then it's prefixed. So, this:

+
{
"name": "foo",
"version": "1.2.3",
"description": "A packaged foo fooer for fooing foos",
"main": "foo.js",
"man": ["./man/foo.1", "./man/bar.1"]
}
+

will create files to do man foo and man foo-bar.

+

Man files must end with a number, and optionally a .gz suffix if they are compressed. The number dictates which man section the file is installed into.

+
{
"name": "foo",
"version": "1.2.3",
"description": "A packaged foo fooer for fooing foos",
"main": "foo.js",
"man": ["./man/foo.1", "./man/foo.2"]
}
+

will create entries for man foo and man 2 foo

+

directories

+

The CommonJS Packages spec details a few ways that you can indicate the structure of your package using a directories object. If you look at npm's package.json, you'll see that it has directories for doc, lib, and man.

+

In the future, this information may be used in other creative ways.

+

directories.bin

+

If you specify a bin directory in directories.bin, all the files in that folder will be added.

+

Because of the way the bin directive works, specifying both a bin path and setting directories.bin is an error. If you want to specify individual files, use bin, and for all the files in an existing bin directory, use directories.bin.

+

directories.man

+

A folder that is full of man pages. Sugar to generate a "man" array by walking the folder.

+

repository

+

Specify the place where your code lives. This is helpful for people who want to contribute. If the git repo is on GitHub, then the npm repo command will be able to find you.

+

Do it like this:

+
{
"repository": {
"type": "git",
"url": "git+https://github.com/npm/cli.git"
}
}
+

The URL should be a publicly available (perhaps read-only) URL that can be handed directly to a VCS program without any modification. It should not be a URL to an html project page that you put in your browser. It's for computers.

+

For GitHub, GitHub gist, Bitbucket, or GitLab repositories you can use the same shortcut syntax you use for npm install:

+
{
"repository": "npm/npm",
+
"repository": "github:user/repo",
+
"repository": "gist:11081aaa281",
+
"repository": "bitbucket:user/repo",
+
"repository": "gitlab:user/repo"
}
+

If the package.json for your package is not in the root directory (for example if it is part of a monorepo), you can specify the directory in which it lives:

+
{
"repository": {
"type": "git",
"url": "git+https://github.com/npm/cli.git",
"directory": "workspaces/libnpmpublish"
}
}
+

scripts

+

The "scripts" property is a dictionary containing script commands that are run at various times in the lifecycle of your package. The key is the lifecycle event, and the value is the command to run at that point.

+

See scripts to find out more about writing package scripts.

+

config

+

A "config" object can be used to set configuration parameters used in package scripts that persist across upgrades. For instance, if a package had the following:

+
{
"name": "foo",
"config": {
"port": "8080"
}
}
+

It could also have a "start" command that referenced the npm_package_config_port environment variable.

+

dependencies

+

Dependencies are specified in a simple object that maps a package name to a version range. The version range is a string which has one or more space-separated descriptors. Dependencies can also be identified with a tarball or git URL.

+

Please do not put test harnesses or transpilers or other "development" time tools in your dependencies object. See devDependencies, below.

+

See semver for more details about specifying version ranges.

+
    +
  • version Must match version exactly
  • +
  • >version Must be greater than version
  • +
  • >=version etc
  • +
  • <version
  • +
  • <=version
  • +
  • ~version "Approximately equivalent to version" See semver
  • +
  • ^version "Compatible with version" See semver
  • +
  • 1.2.x 1.2.0, 1.2.1, etc., but not 1.3.0
  • +
  • http://... See 'URLs as Dependencies' below
  • +
  • * Matches any version
  • +
  • "" (just an empty string) Same as *
  • +
  • version1 - version2 Same as >=version1 <=version2.
  • +
  • range1 || range2 Passes if either range1 or range2 are satisfied.
  • +
  • git... See 'Git URLs as Dependencies' below
  • +
  • user/repo See 'GitHub URLs' below
  • +
  • tag A specific version tagged and published as tag See npm dist-tag
  • +
  • path/path/path See Local Paths below
  • +
  • npm:@scope/pkg@version Custom alias for a package See package-spec
  • +
+

For example, these are all valid:

+
{
"dependencies": {
"foo": "1.0.0 - 2.9999.9999",
"bar": ">=1.0.2 <2.1.2",
"baz": ">1.0.2 <=2.3.4",
"boo": "2.0.1",
"qux": "<1.0.0 || >=2.3.1 <2.4.5 || >=2.5.2 <3.0.0",
"asd": "http://asdf.com/asdf.tar.gz",
"til": "~1.2",
"elf": "~1.2.3",
"two": "2.x",
"thr": "3.3.x",
"lat": "latest",
"dyl": "file:../dyl",
"kpg": "npm:pkg@1.0.0"
}
}
+

URLs as Dependencies

+

You may specify a tarball URL in place of a version range.

+

This tarball will be downloaded and installed locally to your package at install time.

+

Git URLs as Dependencies

+

Git URLs are of the form:

+
<protocol>://[<user>[:<password>]@]<hostname>[:<port>][:][/]<path>[#<commit-ish> | #semver:<semver>]
+

<protocol> is one of git, git+ssh, git+http, git+https, or git+file.

+

If #<commit-ish> is provided, it will be used to clone exactly that commit. If the commit-ish has the format #semver:<semver>, <semver> can be any valid semver range or exact version, and npm will look for any tags or refs matching that range in the remote repository, much as it would for a registry dependency. If neither #<commit-ish> or #semver:<semver> is specified, then the default branch is used.

+

Examples:

+
git+ssh://git@github.com:npm/cli.git#v1.0.27
git+ssh://git@github.com:npm/cli#semver:^5.0
git+https://isaacs@github.com/npm/cli.git
git://github.com/npm/cli.git#v1.0.27
+

When installing from a git repository, the presence of certain fields in the package.json will cause npm to believe it needs to perform a build. To do so your repository will be cloned into a temporary directory, all of its deps installed, relevant scripts run, and the resulting directory packed and installed.

+

This flow will occur if your git dependency uses workspaces, or if any of the following scripts are present:

+
    +
  • build
  • +
  • prepare
  • +
  • prepack
  • +
  • preinstall
  • +
  • install
  • +
  • postinstall
  • +
+

If your git repository includes pre-built artifacts, you will likely want to make sure that none of the above scripts are defined, or your dependency will be rebuilt for every installation.

+

GitHub URLs

+

As of version 1.1.65, you can refer to GitHub URLs as just "foo": "user/foo-project". Just as with git URLs, a commit-ish suffix can be included. For example:

+
{
"name": "foo",
"version": "0.0.0",
"dependencies": {
"express": "expressjs/express",
"mocha": "mochajs/mocha#4727d357ea",
"module": "user/repo#feature\/branch"
}
}
+

Local Paths

+

As of version 2.0.0 you can provide a path to a local directory that contains a package. Local paths can be saved using npm install -S or npm install --save, using any of these forms:

+
../foo/bar
~/foo/bar
./foo/bar
/foo/bar
+

in which case they will be normalized to a relative path and added to your package.json. For example:

+
{
"name": "baz",
"dependencies": {
"bar": "file:../foo/bar"
}
}
+

This feature is helpful for local offline development and creating tests that require npm installing where you don't want to hit an external server, but should not be used when publishing your package to the public registry.

+

note: Packages linked by local path will not have their own dependencies installed when npm install is ran in this case. You must run npm install from inside the local path itself.

+

devDependencies

+

If someone is planning on downloading and using your module in their program, then they probably don't want or need to download and build the external test or documentation framework that you use.

+

In this case, it's best to map these additional items in a devDependencies object.

+

These things will be installed when doing npm link or npm install from the root of a package, and can be managed like any other npm configuration param. See config for more on the topic.

+

For build steps that are not platform-specific, such as compiling CoffeeScript or other languages to JavaScript, use the prepare script to do this, and make the required package a devDependency.

+

For example:

+
{
"name": "ethopia-waza",
"description": "a delightfully fruity coffee varietal",
"version": "1.2.3",
"devDependencies": {
"coffee-script": "~1.6.3"
},
"scripts": {
"prepare": "coffee -o lib/ -c src/waza.coffee"
},
"main": "lib/waza.js"
}
+

The prepare script will be run before publishing, so that users can consume the functionality without requiring them to compile it themselves. In dev mode (ie, locally running npm install), it'll run this script as well, so that you can test it easily.

+

peerDependencies

+

In some cases, you want to express the compatibility of your package with a host tool or library, while not necessarily doing a require of this host. This is usually referred to as a plugin. Notably, your module may be exposing a specific interface, expected and specified by the host documentation.

+

For example:

+
{
"name": "tea-latte",
"version": "1.3.5",
"peerDependencies": {
"tea": "2.x"
}
}
+

This ensures your package tea-latte can be installed along with the second major version of the host package tea only. npm install tea-latte could possibly yield the following dependency graph:

+
├── tea-latte@1.3.5
└── tea@2.2.0
+

In npm versions 3 through 6, peerDependencies were not automatically installed, and would raise a warning if an invalid version of the peer dependency was found in the tree. As of npm v7, peerDependencies are installed by default.

+

Trying to install another plugin with a conflicting requirement may cause an error if the tree cannot be resolved correctly. For this reason, make sure your plugin requirement is as broad as possible, and not to lock it down to specific patch versions.

+

Assuming the host complies with semver, only changes in the host package's major version will break your plugin. Thus, if you've worked with every 1.x version of the host package, use "^1.0" or "1.x" to express this. If you depend on features introduced in 1.5.2, use "^1.5.2".

+

peerDependenciesMeta

+

The peerDependenciesMeta field serves to provide npm more information on how your peer dependencies are to be used. Specifically, it allows peer dependencies to be marked as optional. Npm will not automatically install optional peer dependencies. This allows you to integrate and interact with a variety of host packages without requiring all of them to be installed.

+

For example:

+
{
"name": "tea-latte",
"version": "1.3.5",
"peerDependencies": {
"tea": "2.x",
"soy-milk": "1.2"
},
"peerDependenciesMeta": {
"soy-milk": {
"optional": true
}
}
}
+

bundleDependencies

+

This defines an array of package names that will be bundled when publishing the package.

+

In cases where you need to preserve npm packages locally or have them available through a single file download, you can bundle the packages in a tarball file by specifying the package names in the bundleDependencies array and executing npm pack.

+

For example:

+

If we define a package.json like this:

+
{
"name": "awesome-web-framework",
"version": "1.0.0",
"bundleDependencies": ["renderized", "super-streams"]
}
+

we can obtain awesome-web-framework-1.0.0.tgz file by running npm pack. This file contains the dependencies renderized and super-streams which can be installed in a new project by executing npm install awesome-web-framework-1.0.0.tgz. Note that the package names do not include any versions, as that information is specified in dependencies.

+

If this is spelled "bundledDependencies", then that is also honored.

+

Alternatively, "bundleDependencies" can be defined as a boolean value. A value of true will bundle all dependencies, a value of false will bundle none.

+

optionalDependencies

+

If a dependency can be used, but you would like npm to proceed if it cannot be found or fails to install, then you may put it in the optionalDependencies object. This is a map of package name to version or URL, just like the dependencies object. The difference is that build failures do not cause installation to fail. Running npm install --omit=optional will prevent these dependencies from being installed.

+

It is still your program's responsibility to handle the lack of the dependency. For example, something like this:

+
try {
var foo = require("foo");
var fooVersion = require("foo/package.json").version;
} catch (er) {
foo = null;
}
if (notGoodFooVersion(fooVersion)) {
foo = null;
}
+
// .. then later in your program ..
+
if (foo) {
foo.doFooThings();
}
+

Entries in optionalDependencies will override entries of the same name in dependencies, so it's usually best to only put in one place.

+

overrides

+

If you need to make specific changes to dependencies of your dependencies, for example replacing the version of a dependency with a known security issue, replacing an existing dependency with a fork, or making sure that the same version of a package is used everywhere, then you may add an override.

+

Overrides provide a way to replace a package in your dependency tree with another version, or another package entirely. These changes can be scoped as specific or as vague as desired.

+

Overrides are only considered in the root package.json file for a project. Overrides in installed dependencies (including workspaces) are not considered in dependency tree resolution. Published packages may dictate their resolutions by pinning dependencies or using an npm-shrinkwrap.json file.

+

To make sure the package foo is always installed as version 1.0.0 no matter what version your dependencies rely on:

+
{
"overrides": {
"foo": "1.0.0"
}
}
+

The above is a short hand notation, the full object form can be used to allow overriding a package itself as well as a child of the package. This will cause foo to always be 1.0.0 while also making bar at any depth beyond foo also 1.0.0:

+
{
"overrides": {
"foo": {
".": "1.0.0",
"bar": "1.0.0"
}
}
}
+

To only override foo to be 1.0.0 when it's a child (or grandchild, or great grandchild, etc) of the package bar:

+
{
"overrides": {
"bar": {
"foo": "1.0.0"
}
}
}
+

Keys can be nested to any arbitrary length. To override foo only when it's a child of bar and only when bar is a child of baz:

+
{
"overrides": {
"baz": {
"bar": {
"foo": "1.0.0"
}
}
}
}
+

The key of an override can also include a version, or range of versions. To override foo to 1.0.0, but only when it's a child of bar@2.0.0:

+
{
"overrides": {
"bar@2.0.0": {
"foo": "1.0.0"
}
}
}
+

You may not set an override for a package that you directly depend on unless both the dependency and the override itself share the exact same spec. To make this limitation easier to deal with, overrides may also be defined as a reference to a spec for a direct dependency by prefixing the name of the package you wish the version to match with a $.

+
{
"dependencies": {
"foo": "^1.0.0"
},
"overrides": {
// BAD, will throw an EOVERRIDE error
// "foo": "^2.0.0"
// GOOD, specs match so override is allowed
// "foo": "^1.0.0"
// BEST, the override is defined as a reference to the dependency
"foo": "$foo",
// the referenced package does not need to match the overridden one
"bar": "$foo"
}
}
+

engines

+

You can specify the version of node that your stuff works on:

+
{
"engines": {
"node": ">=0.10.3 <15"
}
}
+

And, like with dependencies, if you don't specify the version (or if you specify "*" as the version), then any version of node will do.

+

You can also use the "engines" field to specify which versions of npm are capable of properly installing your program. For example:

+
{
"engines": {
"npm": "~1.0.20"
}
}
+

Unless the user has set the engine-strict config flag, this field is advisory only and will only produce warnings when your package is installed as a dependency.

+

os

+

You can specify which operating systems your module will run on:

+
{
"os": ["darwin", "linux"]
}
+

You can also block instead of allowing operating systems, just prepend the blocked os with a '!':

+
{
"os": ["!win32"]
}
+

The host operating system is determined by process.platform

+

It is allowed to both block and allow an item, although there isn't any good reason to do this.

+

cpu

+

If your code only runs on certain cpu architectures, you can specify which ones.

+
{
"cpu": ["x64", "ia32"]
}
+

Like the os option, you can also block architectures:

+
{
"cpu": ["!arm", "!mips"]
}
+

The host architecture is determined by process.arch

+

devEngines

+

The devEngines field aids engineers working on a codebase to all be using the same tooling.

+

You can specify a devEngines property in your package.json which will run before install, ci, and run commands.

+
+

Note: engines and devEngines differ in object shape. They also function very differently. engines is designed to alert the user when a dependency uses a differening npm or node version that the project it's being used in, whereas devEngines is used to alert people interacting with the source code of a project.

+
+

The supported keys under the devEngines property are cpu, os, libc, runtime, and packageManager. Each property can be an object or an array of objects. Objects must contain name, and optionally can specify version, and onFail. onFail can be warn, error, or ignore, and if left undefined is of the same value as error. npm will assume that you're running with node. Here's an example of a project that will fail if the environment is not node and npm. If you set runtime.name or packageManager.name to any other string, it will fail within the npm CLI.

+
{
"devEngines": {
"runtime": {
"name": "node",
"onFail": "error"
},
"packageManager": {
"name": "npm",
"onFail": "error"
}
}
}
+

private

+

If you set "private": true in your package.json, then npm will refuse to publish it.

+

This is a way to prevent accidental publication of private repositories. If you would like to ensure that a given package is only ever published to a specific registry (for example, an internal registry), then use the publishConfig dictionary described below to override the registry config param at publish-time.

+

publishConfig

+

This is a set of config values that will be used at publish-time. It's especially handy if you want to set the tag, registry or access, so that you can ensure that a given package is not tagged with "latest", published to the global public registry or that a scoped module is private by default.

+

See config to see the list of config options that can be overridden.

+

workspaces

+

The optional workspaces field is an array of file patterns that describes locations within the local file system that the install client should look up to find each workspace that needs to be symlinked to the top level node_modules folder.

+

It can describe either the direct paths of the folders to be used as workspaces or it can define globs that will resolve to these same folders.

+

In the following example, all folders located inside the folder ./packages will be treated as workspaces as long as they have valid package.json files inside them:

+
{
"name": "workspace-example",
"workspaces": ["./packages/*"]
}
+

See workspaces for more examples.

+

DEFAULT VALUES

+

npm will default some values based on package contents.

+
    +
  • +

    "scripts": {"start": "node server.js"}

    +

    If there is a server.js file in the root of your package, then npm will default the start command to node server.js.

    +
  • +
  • +

    "scripts":{"install": "node-gyp rebuild"}

    +

    If there is a binding.gyp file in the root of your package and you have not defined an install or preinstall script, npm will default the install command to compile using node-gyp.

    +
  • +
  • +

    "contributors": [...]

    +

    If there is an AUTHORS file in the root of your package, npm will treat each line as a Name <email> (url) format, where email and url are optional. Lines which start with a # or are blank, will be ignored.

    +
  • +
+

SEE ALSO

+
+ + \ No newline at end of file diff --git a/docs/case-studies/issue-7/evidence/pr-8-comments.json b/docs/case-studies/issue-7/evidence/pr-8-comments.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/docs/case-studies/issue-7/evidence/pr-8-comments.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/docs/case-studies/issue-7/evidence/pr-8-review-comments.json b/docs/case-studies/issue-7/evidence/pr-8-review-comments.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/docs/case-studies/issue-7/evidence/pr-8-review-comments.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/docs/case-studies/issue-7/evidence/pr-8-reviews.json b/docs/case-studies/issue-7/evidence/pr-8-reviews.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/docs/case-studies/issue-7/evidence/pr-8-reviews.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/docs/case-studies/issue-7/evidence/pr-8.json b/docs/case-studies/issue-7/evidence/pr-8.json new file mode 100644 index 0000000..a1c6b2b --- /dev/null +++ b/docs/case-studies/issue-7/evidence/pr-8.json @@ -0,0 +1 @@ +{"url":"https://api.github.com/repos/linksplatform/doublets-web/pulls/8","id":3613505179,"node_id":"PR_kwDOGgeHac7XYbab","html_url":"https://github.com/linksplatform/doublets-web/pull/8","diff_url":"https://github.com/linksplatform/doublets-web/pull/8.diff","patch_url":"https://github.com/linksplatform/doublets-web/pull/8.patch","issue_url":"https://api.github.com/repos/linksplatform/doublets-web/issues/8","number":8,"state":"open","locked":false,"title":"[WIP] Our License is Unlicense (Public Domain) (fix in all places)","user":{"login":"konard","id":1431904,"node_id":"MDQ6VXNlcjE0MzE5MDQ=","avatar_url":"https://avatars.githubusercontent.com/u/1431904?v=4","gravatar_id":"","url":"https://api.github.com/users/konard","html_url":"https://github.com/konard","followers_url":"https://api.github.com/users/konard/followers","following_url":"https://api.github.com/users/konard/following{/other_user}","gists_url":"https://api.github.com/users/konard/gists{/gist_id}","starred_url":"https://api.github.com/users/konard/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/konard/subscriptions","organizations_url":"https://api.github.com/users/konard/orgs","repos_url":"https://api.github.com/users/konard/repos","events_url":"https://api.github.com/users/konard/events{/privacy}","received_events_url":"https://api.github.com/users/konard/received_events","type":"User","user_view_type":"public","site_admin":false},"body":"## 🤖 AI-Powered Solution Draft\n\nThis pull request is being automatically generated to solve issue #7.\n\n### 📋 Issue Reference\nFixes #7\n\n### 🚧 Status\n**Work in Progress** - The AI assistant is currently analyzing and implementing the solution draft.\n\n### 📝 Implementation Details\n_Details will be added as the solution draft is developed..._\n\n---\n*This PR was created automatically by the AI issue solver*","created_at":"2026-05-01T09:01:55Z","updated_at":"2026-05-01T09:01:57Z","closed_at":null,"merged_at":null,"merge_commit_sha":"b1f51502ba1e9e01cf4bc7af90ade8774e1119e2","assignees":[{"login":"konard","id":1431904,"node_id":"MDQ6VXNlcjE0MzE5MDQ=","avatar_url":"https://avatars.githubusercontent.com/u/1431904?v=4","gravatar_id":"","url":"https://api.github.com/users/konard","html_url":"https://github.com/konard","followers_url":"https://api.github.com/users/konard/followers","following_url":"https://api.github.com/users/konard/following{/other_user}","gists_url":"https://api.github.com/users/konard/gists{/gist_id}","starred_url":"https://api.github.com/users/konard/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/konard/subscriptions","organizations_url":"https://api.github.com/users/konard/orgs","repos_url":"https://api.github.com/users/konard/repos","events_url":"https://api.github.com/users/konard/events{/privacy}","received_events_url":"https://api.github.com/users/konard/received_events","type":"User","user_view_type":"public","site_admin":false}],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"draft":true,"commits_url":"https://api.github.com/repos/linksplatform/doublets-web/pulls/8/commits","review_comments_url":"https://api.github.com/repos/linksplatform/doublets-web/pulls/8/comments","review_comment_url":"https://api.github.com/repos/linksplatform/doublets-web/pulls/comments{/number}","comments_url":"https://api.github.com/repos/linksplatform/doublets-web/issues/8/comments","statuses_url":"https://api.github.com/repos/linksplatform/doublets-web/statuses/4d2d61df451b86095017fa6435e2e7c843f2df93","head":{"label":"linksplatform:issue-7-09f254443cff","ref":"issue-7-09f254443cff","sha":"4d2d61df451b86095017fa6435e2e7c843f2df93","user":{"login":"linksplatform","id":15116341,"node_id":"MDEyOk9yZ2FuaXphdGlvbjE1MTE2MzQx","avatar_url":"https://avatars.githubusercontent.com/u/15116341?v=4","gravatar_id":"","url":"https://api.github.com/users/linksplatform","html_url":"https://github.com/linksplatform","followers_url":"https://api.github.com/users/linksplatform/followers","following_url":"https://api.github.com/users/linksplatform/following{/other_user}","gists_url":"https://api.github.com/users/linksplatform/gists{/gist_id}","starred_url":"https://api.github.com/users/linksplatform/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/linksplatform/subscriptions","organizations_url":"https://api.github.com/users/linksplatform/orgs","repos_url":"https://api.github.com/users/linksplatform/repos","events_url":"https://api.github.com/users/linksplatform/events{/privacy}","received_events_url":"https://api.github.com/users/linksplatform/received_events","type":"Organization","user_view_type":"public","site_admin":false},"repo":{"id":436701033,"node_id":"R_kgDOGgeHaQ","name":"doublets-web","full_name":"linksplatform/doublets-web","private":false,"owner":{"login":"linksplatform","id":15116341,"node_id":"MDEyOk9yZ2FuaXphdGlvbjE1MTE2MzQx","avatar_url":"https://avatars.githubusercontent.com/u/15116341?v=4","gravatar_id":"","url":"https://api.github.com/users/linksplatform","html_url":"https://github.com/linksplatform","followers_url":"https://api.github.com/users/linksplatform/followers","following_url":"https://api.github.com/users/linksplatform/following{/other_user}","gists_url":"https://api.github.com/users/linksplatform/gists{/gist_id}","starred_url":"https://api.github.com/users/linksplatform/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/linksplatform/subscriptions","organizations_url":"https://api.github.com/users/linksplatform/orgs","repos_url":"https://api.github.com/users/linksplatform/repos","events_url":"https://api.github.com/users/linksplatform/events{/privacy}","received_events_url":"https://api.github.com/users/linksplatform/received_events","type":"Organization","user_view_type":"public","site_admin":false},"html_url":"https://github.com/linksplatform/doublets-web","description":null,"fork":false,"url":"https://api.github.com/repos/linksplatform/doublets-web","forks_url":"https://api.github.com/repos/linksplatform/doublets-web/forks","keys_url":"https://api.github.com/repos/linksplatform/doublets-web/keys{/key_id}","collaborators_url":"https://api.github.com/repos/linksplatform/doublets-web/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/linksplatform/doublets-web/teams","hooks_url":"https://api.github.com/repos/linksplatform/doublets-web/hooks","issue_events_url":"https://api.github.com/repos/linksplatform/doublets-web/issues/events{/number}","events_url":"https://api.github.com/repos/linksplatform/doublets-web/events","assignees_url":"https://api.github.com/repos/linksplatform/doublets-web/assignees{/user}","branches_url":"https://api.github.com/repos/linksplatform/doublets-web/branches{/branch}","tags_url":"https://api.github.com/repos/linksplatform/doublets-web/tags","blobs_url":"https://api.github.com/repos/linksplatform/doublets-web/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/linksplatform/doublets-web/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/linksplatform/doublets-web/git/refs{/sha}","trees_url":"https://api.github.com/repos/linksplatform/doublets-web/git/trees{/sha}","statuses_url":"https://api.github.com/repos/linksplatform/doublets-web/statuses/{sha}","languages_url":"https://api.github.com/repos/linksplatform/doublets-web/languages","stargazers_url":"https://api.github.com/repos/linksplatform/doublets-web/stargazers","contributors_url":"https://api.github.com/repos/linksplatform/doublets-web/contributors","subscribers_url":"https://api.github.com/repos/linksplatform/doublets-web/subscribers","subscription_url":"https://api.github.com/repos/linksplatform/doublets-web/subscription","commits_url":"https://api.github.com/repos/linksplatform/doublets-web/commits{/sha}","git_commits_url":"https://api.github.com/repos/linksplatform/doublets-web/git/commits{/sha}","comments_url":"https://api.github.com/repos/linksplatform/doublets-web/comments{/number}","issue_comment_url":"https://api.github.com/repos/linksplatform/doublets-web/issues/comments{/number}","contents_url":"https://api.github.com/repos/linksplatform/doublets-web/contents/{+path}","compare_url":"https://api.github.com/repos/linksplatform/doublets-web/compare/{base}...{head}","merges_url":"https://api.github.com/repos/linksplatform/doublets-web/merges","archive_url":"https://api.github.com/repos/linksplatform/doublets-web/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/linksplatform/doublets-web/downloads","issues_url":"https://api.github.com/repos/linksplatform/doublets-web/issues{/number}","pulls_url":"https://api.github.com/repos/linksplatform/doublets-web/pulls{/number}","milestones_url":"https://api.github.com/repos/linksplatform/doublets-web/milestones{/number}","notifications_url":"https://api.github.com/repos/linksplatform/doublets-web/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/linksplatform/doublets-web/labels{/name}","releases_url":"https://api.github.com/repos/linksplatform/doublets-web/releases{/id}","deployments_url":"https://api.github.com/repos/linksplatform/doublets-web/deployments","created_at":"2021-12-09T17:19:56Z","updated_at":"2026-05-01T05:28:29Z","pushed_at":"2026-05-01T09:01:49Z","git_url":"git://github.com/linksplatform/doublets-web.git","ssh_url":"git@github.com:linksplatform/doublets-web.git","clone_url":"https://github.com/linksplatform/doublets-web.git","svn_url":"https://github.com/linksplatform/doublets-web","homepage":null,"size":696,"stargazers_count":0,"watchers_count":0,"language":"Rust","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":6,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"has_pull_requests":true,"pull_request_creation_policy":"all","topics":[],"visibility":"public","forks":1,"open_issues":6,"watchers":0,"default_branch":"master"}},"base":{"label":"linksplatform:master","ref":"master","sha":"0874a34db8aa8d83f32be85af41efee695bea3c3","user":{"login":"linksplatform","id":15116341,"node_id":"MDEyOk9yZ2FuaXphdGlvbjE1MTE2MzQx","avatar_url":"https://avatars.githubusercontent.com/u/15116341?v=4","gravatar_id":"","url":"https://api.github.com/users/linksplatform","html_url":"https://github.com/linksplatform","followers_url":"https://api.github.com/users/linksplatform/followers","following_url":"https://api.github.com/users/linksplatform/following{/other_user}","gists_url":"https://api.github.com/users/linksplatform/gists{/gist_id}","starred_url":"https://api.github.com/users/linksplatform/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/linksplatform/subscriptions","organizations_url":"https://api.github.com/users/linksplatform/orgs","repos_url":"https://api.github.com/users/linksplatform/repos","events_url":"https://api.github.com/users/linksplatform/events{/privacy}","received_events_url":"https://api.github.com/users/linksplatform/received_events","type":"Organization","user_view_type":"public","site_admin":false},"repo":{"id":436701033,"node_id":"R_kgDOGgeHaQ","name":"doublets-web","full_name":"linksplatform/doublets-web","private":false,"owner":{"login":"linksplatform","id":15116341,"node_id":"MDEyOk9yZ2FuaXphdGlvbjE1MTE2MzQx","avatar_url":"https://avatars.githubusercontent.com/u/15116341?v=4","gravatar_id":"","url":"https://api.github.com/users/linksplatform","html_url":"https://github.com/linksplatform","followers_url":"https://api.github.com/users/linksplatform/followers","following_url":"https://api.github.com/users/linksplatform/following{/other_user}","gists_url":"https://api.github.com/users/linksplatform/gists{/gist_id}","starred_url":"https://api.github.com/users/linksplatform/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/linksplatform/subscriptions","organizations_url":"https://api.github.com/users/linksplatform/orgs","repos_url":"https://api.github.com/users/linksplatform/repos","events_url":"https://api.github.com/users/linksplatform/events{/privacy}","received_events_url":"https://api.github.com/users/linksplatform/received_events","type":"Organization","user_view_type":"public","site_admin":false},"html_url":"https://github.com/linksplatform/doublets-web","description":null,"fork":false,"url":"https://api.github.com/repos/linksplatform/doublets-web","forks_url":"https://api.github.com/repos/linksplatform/doublets-web/forks","keys_url":"https://api.github.com/repos/linksplatform/doublets-web/keys{/key_id}","collaborators_url":"https://api.github.com/repos/linksplatform/doublets-web/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/linksplatform/doublets-web/teams","hooks_url":"https://api.github.com/repos/linksplatform/doublets-web/hooks","issue_events_url":"https://api.github.com/repos/linksplatform/doublets-web/issues/events{/number}","events_url":"https://api.github.com/repos/linksplatform/doublets-web/events","assignees_url":"https://api.github.com/repos/linksplatform/doublets-web/assignees{/user}","branches_url":"https://api.github.com/repos/linksplatform/doublets-web/branches{/branch}","tags_url":"https://api.github.com/repos/linksplatform/doublets-web/tags","blobs_url":"https://api.github.com/repos/linksplatform/doublets-web/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/linksplatform/doublets-web/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/linksplatform/doublets-web/git/refs{/sha}","trees_url":"https://api.github.com/repos/linksplatform/doublets-web/git/trees{/sha}","statuses_url":"https://api.github.com/repos/linksplatform/doublets-web/statuses/{sha}","languages_url":"https://api.github.com/repos/linksplatform/doublets-web/languages","stargazers_url":"https://api.github.com/repos/linksplatform/doublets-web/stargazers","contributors_url":"https://api.github.com/repos/linksplatform/doublets-web/contributors","subscribers_url":"https://api.github.com/repos/linksplatform/doublets-web/subscribers","subscription_url":"https://api.github.com/repos/linksplatform/doublets-web/subscription","commits_url":"https://api.github.com/repos/linksplatform/doublets-web/commits{/sha}","git_commits_url":"https://api.github.com/repos/linksplatform/doublets-web/git/commits{/sha}","comments_url":"https://api.github.com/repos/linksplatform/doublets-web/comments{/number}","issue_comment_url":"https://api.github.com/repos/linksplatform/doublets-web/issues/comments{/number}","contents_url":"https://api.github.com/repos/linksplatform/doublets-web/contents/{+path}","compare_url":"https://api.github.com/repos/linksplatform/doublets-web/compare/{base}...{head}","merges_url":"https://api.github.com/repos/linksplatform/doublets-web/merges","archive_url":"https://api.github.com/repos/linksplatform/doublets-web/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/linksplatform/doublets-web/downloads","issues_url":"https://api.github.com/repos/linksplatform/doublets-web/issues{/number}","pulls_url":"https://api.github.com/repos/linksplatform/doublets-web/pulls{/number}","milestones_url":"https://api.github.com/repos/linksplatform/doublets-web/milestones{/number}","notifications_url":"https://api.github.com/repos/linksplatform/doublets-web/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/linksplatform/doublets-web/labels{/name}","releases_url":"https://api.github.com/repos/linksplatform/doublets-web/releases{/id}","deployments_url":"https://api.github.com/repos/linksplatform/doublets-web/deployments","created_at":"2021-12-09T17:19:56Z","updated_at":"2026-05-01T05:28:29Z","pushed_at":"2026-05-01T09:01:49Z","git_url":"git://github.com/linksplatform/doublets-web.git","ssh_url":"git@github.com:linksplatform/doublets-web.git","clone_url":"https://github.com/linksplatform/doublets-web.git","svn_url":"https://github.com/linksplatform/doublets-web","homepage":null,"size":696,"stargazers_count":0,"watchers_count":0,"language":"Rust","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"has_discussions":false,"forks_count":1,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":6,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"allow_forking":true,"is_template":false,"web_commit_signoff_required":false,"has_pull_requests":true,"pull_request_creation_policy":"all","topics":[],"visibility":"public","forks":1,"open_issues":6,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/linksplatform/doublets-web/pulls/8"},"html":{"href":"https://github.com/linksplatform/doublets-web/pull/8"},"issue":{"href":"https://api.github.com/repos/linksplatform/doublets-web/issues/8"},"comments":{"href":"https://api.github.com/repos/linksplatform/doublets-web/issues/8/comments"},"review_comments":{"href":"https://api.github.com/repos/linksplatform/doublets-web/pulls/8/comments"},"review_comment":{"href":"https://api.github.com/repos/linksplatform/doublets-web/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/linksplatform/doublets-web/pulls/8/commits"},"statuses":{"href":"https://api.github.com/repos/linksplatform/doublets-web/statuses/4d2d61df451b86095017fa6435e2e7c843f2df93"}},"author_association":"MEMBER","auto_merge":null,"assignee":{"login":"konard","id":1431904,"node_id":"MDQ6VXNlcjE0MzE5MDQ=","avatar_url":"https://avatars.githubusercontent.com/u/1431904?v=4","gravatar_id":"","url":"https://api.github.com/users/konard","html_url":"https://github.com/konard","followers_url":"https://api.github.com/users/konard/followers","following_url":"https://api.github.com/users/konard/following{/other_user}","gists_url":"https://api.github.com/users/konard/gists{/gist_id}","starred_url":"https://api.github.com/users/konard/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/konard/subscriptions","organizations_url":"https://api.github.com/users/konard/orgs","repos_url":"https://api.github.com/users/konard/repos","events_url":"https://api.github.com/users/konard/events{/privacy}","received_events_url":"https://api.github.com/users/konard/received_events","type":"User","user_view_type":"public","site_admin":false},"active_lock_reason":null,"merged":false,"mergeable":true,"rebaseable":true,"mergeable_state":"unstable","merged_by":null,"comments":0,"review_comments":0,"maintainer_can_modify":false,"commits":1,"additions":1,"deletions":0,"changed_files":1} \ No newline at end of file diff --git a/docs/case-studies/issue-7/evidence/spdx-unlicense.json b/docs/case-studies/issue-7/evidence/spdx-unlicense.json new file mode 100644 index 0000000..0b0bc53 --- /dev/null +++ b/docs/case-studies/issue-7/evidence/spdx-unlicense.json @@ -0,0 +1,26 @@ +{ + "isDeprecatedLicenseId": false, + "isFsfLibre": true, + "licenseText": "This is free and unencumbered software released into the public domain.\n\nAnyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.\n\nIn jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and\nsuccessors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\nFor more information, please refer to \u003chttp://unlicense.org/\u003e\n", + "standardLicenseTemplate": "This is free and unencumbered software released into the public domain.\n\nAnyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.\n\nIn jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n\u003c\u003cbeginOptional\u003e\u003eFor more information, please refer to \u003chttps://unlicense.org/\u003e\n\n\u003c\u003cendOptional\u003e\u003e", + "name": "The Unlicense", + "licenseComments": "This is a public domain dedication", + "comment": "This is a public domain dedication", + "licenseId": "Unlicense", + "crossRef": [ + { + "match": "true", + "url": "https://unlicense.org/", + "isValid": true, + "isLive": true, + "timestamp": "2026-02-20T20:54:29Z", + "isWayBackLink": false, + "order": 0 + } + ], + "seeAlso": [ + "https://unlicense.org/" + ], + "isOsiApproved": true, + "licenseTextHtml": "\n \u003cp\u003eThis is free and unencumbered software released into the public domain.\u003c/p\u003e\n\n \u003cp\u003eAnyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in\n source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any\n means.\u003c/p\u003e\n\n \u003cp\u003eIn jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and\n all copyright interest in the software to the public domain. We make this dedication for the benefit\n of the public at large and to the detriment of our heirs and\n successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all\n present and future rights to this software under copyright law.\n \u003c/p\u003e\n\n \u003cp\u003eTHE SOFTWARE IS PROVIDED \u0026quot;AS IS\u0026quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT\n LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN\n NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\n OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\n OTHER DEALINGS IN THE SOFTWARE.\u003c/p\u003e\n\n \u003cdiv class\u003d\"optional-license-text\"\u003e \u003cp\u003eFor more information, please refer to \u0026lt;https://unlicense.org/\u0026gt;\u003c/p\u003e\n\u003c/div\u003e\n " +} \ No newline at end of file diff --git a/docs/case-studies/issue-7/logs/cargo-check-locked-tests-all-features.log b/docs/case-studies/issue-7/logs/cargo-check-locked-tests-all-features.log new file mode 100644 index 0000000..eedd303 --- /dev/null +++ b/docs/case-studies/issue-7/logs/cargo-check-locked-tests-all-features.log @@ -0,0 +1,48 @@ + Downloading crates ... + Downloaded cfg-if v0.1.10 + Downloaded memory_units v0.4.0 + Downloaded wee_alloc v0.4.5 + Checking once_cell v1.21.4 + Checking libm v0.2.16 + Compiling num-traits v0.2.19 + Checking unicode-ident v1.0.24 + Checking cfg-if v1.0.4 + Compiling wasm-bindgen v0.2.120 + Compiling thiserror v2.0.18 + Checking futures-core v0.3.32 + Checking wasm-bindgen-shared v0.2.120 + Checking pin-project-lite v0.2.17 + Checking slab v0.4.12 + Checking futures-task v0.3.32 + Compiling serde_core v1.0.228 + Checking fastrand v2.4.1 + Compiling zmij v1.0.21 + Checking memmap2 v0.9.10 + Checking futures-util v0.3.32 + Checking beef v0.5.2 + Checking tempfile v3.27.0 + Compiling wee_alloc v0.4.5 + Checking allocator-api2 v0.4.0 + Compiling serde v1.0.228 + Compiling serde_json v1.0.149 + Checking platform-mem v0.3.0 + Checking cfg-if v0.1.10 + Checking tap v1.0.1 + Checking memory_units v0.4.0 + Checking itoa v1.0.18 + Checking leak_slice v0.2.0 + Checking memchr v2.8.0 + Checking platform-num v0.8.0 + Checking cast v0.3.0 + Checking platform-data v2.0.0 + Checking platform-trees v0.3.4 + Checking oorandom v11.1.5 + Checking wasm-bindgen-test-shared v0.2.120 + Checking nu-ansi-term v0.50.3 + Checking console_error_panic_hook v0.1.7 + Checking doublets v0.3.0 + Checking js-sys v0.3.97 + Checking wasm-bindgen-futures v0.4.70 + Checking doublets-web v0.1.2 (/tmp/gh-issue-solver-1777626107940) + Checking wasm-bindgen-test v0.3.70 + Finished `dev` profile [unoptimized + debuginfo] target(s) in 8.68s diff --git a/docs/case-studies/issue-7/logs/cargo-clippy-locked-tests-all-features.log b/docs/case-studies/issue-7/logs/cargo-clippy-locked-tests-all-features.log new file mode 100644 index 0000000..dcc20f1 --- /dev/null +++ b/docs/case-studies/issue-7/logs/cargo-clippy-locked-tests-all-features.log @@ -0,0 +1,2 @@ + Checking doublets-web v0.1.2 (/tmp/gh-issue-solver-1777626107940) + Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.58s diff --git a/docs/case-studies/issue-7/logs/cargo-fmt-check.log b/docs/case-studies/issue-7/logs/cargo-fmt-check.log new file mode 100644 index 0000000..e69de29 diff --git a/docs/case-studies/issue-7/logs/cargo-install-wasm-pack.log b/docs/case-studies/issue-7/logs/cargo-install-wasm-pack.log new file mode 100644 index 0000000..bcde113 --- /dev/null +++ b/docs/case-studies/issue-7/logs/cargo-install-wasm-pack.log @@ -0,0 +1,334 @@ + Updating crates.io index + Downloading crates ... + Downloaded wasm-pack v0.14.0 + Installing wasm-pack v0.14.0 + Updating crates.io index + Updating crates.io index + Downloading crates ... + Downloaded byteorder v1.5.0 + Downloaded block-buffer v0.10.4 + Downloaded zerotrie v0.2.3 + Downloaded socks v0.3.4 + Downloaded stable_deref_trait v1.2.1 + Downloaded adler2 v2.0.1 + Downloaded time v0.3.45 + Downloaded zstd-safe v7.2.4 + Downloaded toml_parser v1.0.6+spec-1.1.0 + Downloaded zeroize v1.8.2 + Downloaded zerofrom-derive v0.1.6 + Downloaded zeroize_derive v1.4.3 + Downloaded uuid v1.19.0 + Downloaded webpki-roots v0.26.11 + Downloaded xattr v1.6.1 + Downloaded zerofrom v0.1.6 + Downloaded zstd v0.13.3 + Downloaded zmij v1.0.16 + Downloaded zopfli v0.8.3 + Downloaded path-clean v1.0.1 + Downloaded crc-catalog v2.4.0 + Downloaded displaydoc v0.2.5 + Downloaded iana-time-zone v0.1.64 + Downloaded typenum v1.19.0 + Downloaded url v2.5.8 + Downloaded ureq v2.12.1 + Downloaded zip v2.4.2 + Downloaded env_logger v0.11.8 + Downloaded rustls-pki-types v1.14.0 + Downloaded webpki-roots v1.0.5 + Downloaded winnow v0.7.14 + Downloaded siphasher v1.0.1 + Downloaded unicode-width v0.2.2 + Downloaded syn v2.0.114 + Downloaded shlex v1.3.0 + Downloaded fs4 v0.6.6 + Downloaded filetime v0.2.27 + Downloaded digest v0.10.7 + Downloaded cargo_metadata v0.23.1 + Downloaded find-msvc-tools v0.1.8 + Downloaded semver v1.0.27 + Downloaded jobserver v0.1.34 + Downloaded litemap v0.8.1 + Downloaded log v0.4.29 + Downloaded proc-macro2 v1.0.105 + Downloaded clap v4.5.54 + Downloaded miniz_oxide v0.8.9 + Downloaded icu_normalizer v2.1.1 + Downloaded icu_locale_core v2.1.1 + Downloaded rustls-webpki v0.103.9 + Downloaded flate2 v1.1.8 + Downloaded indexmap v2.13.0 + Downloaded cc v1.2.53 + Downloaded memchr v2.7.6 + Downloaded icu_properties v2.1.2 + Downloaded idna v1.1.0 + Downloaded icu_properties_data v2.1.2 + Downloaded clap_builder v4.5.54 + Downloaded hashbrown v0.16.1 + Downloaded icu_normalizer_data v2.1.1 + Downloaded zstd-sys v2.0.16+zstd.1.5.7 + Downloaded chrono v0.4.43 + Downloaded icu_collections v2.1.1 + Downloaded icu_provider v2.1.1 + Downloaded bzip2 v0.5.2 + Downloaded object v0.37.3 + Downloaded gimli v0.32.3 + Downloaded rustix v0.38.44 + Downloaded rustls v0.23.36 + Downloaded console v0.16.2 + Downloaded camino v1.2.2 + Downloaded rustc-demangle v0.1.27 + Downloaded quote v1.0.43 + Downloaded pkg-config v0.3.32 + Downloaded lzma-rs v0.3.0 + Downloaded is_executable v0.1.2 + Downloaded human-panic v2.0.6 + Downloaded hmac v0.12.1 + Downloaded bzip2-sys v0.1.13+1.0.8 + Downloaded glob v0.3.3 + Downloaded equivalent v1.0.2 + Downloaded serde_spanned v1.0.4 + Downloaded serde_ignored v0.1.14 + Downloaded same-file v1.0.6 + Downloaded percent-encoding v2.3.2 + Downloaded pbkdf2 v0.12.2 + Downloaded num-conv v0.1.0 + Downloaded inout v0.1.4 + Downloaded lzma-sys v0.1.20 + Downloaded env_home v0.1.0 + Downloaded libc v0.2.180 + Downloaded siphasher v0.3.11 + Downloaded sha1 v0.10.6 + Downloaded itoa v1.0.17 + Downloaded getrandom v0.2.17 + Downloaded cargo-platform v0.3.2 + Downloaded zerovec v0.11.5 + Downloaded shell-words v1.1.1 + Downloaded powerfmt v0.2.0 + Downloaded form_urlencoded v1.2.2 + Downloaded clap_lex v0.7.7 + Downloaded potential_utf v0.1.4 + Downloaded env_filter v0.1.4 + Downloaded crc v3.4.0 + Downloaded dialoguer v0.12.0 + Downloaded deranged v0.5.5 + Downloaded deflate64 v0.1.10 + Downloaded yoke v0.8.1 + Downloaded zerovec-derive v0.11.2 + Downloaded xz2 v0.1.7 + Downloaded writeable v0.6.2 + Downloaded generic-array v0.14.7 + Downloaded dirs-sys-next v0.1.2 + Downloaded constant_time_eq v0.3.1 + Downloaded toml_writer v1.0.6+spec-1.1.0 + Downloaded aes v0.8.4 + Downloaded version_check v0.9.5 + Downloaded idna_adapter v1.2.1 + Downloaded hex v0.4.3 + Downloaded crc32fast v1.5.0 + Downloaded walkdir v2.5.0 + Downloaded cpufeatures v0.2.17 + Downloaded utf8_iter v1.0.4 + Downloaded untrusted v0.9.0 + Downloaded crypto-common v0.1.7 + Downloaded bumpalo v3.19.1 + Downloaded ring v0.17.14 + Downloaded backtrace v0.3.76 + Downloaded toml v0.9.11+spec-1.1.0 + Downloaded tar v0.4.44 + Downloaded sysinfo v0.37.2 + Downloaded yoke-derive v0.8.1 + Downloaded toml_datetime v0.7.5+spec-1.1.0 + Downloaded tinystr v0.8.2 + Downloaded time-core v0.1.7 + Downloaded synstructure v0.13.2 + Downloaded subtle v2.6.1 + Downloaded binary-install v0.4.1 + Downloaded base64 v0.22.1 + Downloaded addr2line v0.25.1 + Downloaded which v8.0.0 + Downloaded simd-adler32 v0.3.8 + Downloaded dirs-next v2.0.0 + Downloaded cipher v0.4.4 + Downloaded linux-raw-sys v0.4.15 + Compiling libc v0.2.180 + Compiling proc-macro2 v1.0.105 + Compiling unicode-ident v1.0.22 + Compiling quote v1.0.43 + Compiling shlex v1.3.0 + Compiling find-msvc-tools v0.1.8 + Compiling cfg-if v1.0.4 + Compiling pkg-config v0.3.32 + Compiling serde_core v1.0.228 + Compiling stable_deref_trait v1.2.1 + Compiling typenum v1.19.0 + Compiling version_check v0.9.5 + Compiling generic-array v0.14.7 + Compiling memchr v2.7.6 + Compiling syn v2.0.114 + Compiling jobserver v0.1.34 + Compiling litemap v0.8.1 + Compiling cc v1.2.53 + Compiling bitflags v2.10.0 + Compiling writeable v0.6.2 + Compiling crypto-common v0.1.7 + Compiling getrandom v0.3.4 + Compiling icu_properties_data v2.1.2 + Compiling smallvec v1.15.1 + Compiling simd-adler32 v0.3.8 + Compiling icu_normalizer_data v2.1.1 + Compiling rustix v1.1.3 + Compiling subtle v2.6.1 + Compiling adler2 v2.0.1 + Compiling linux-raw-sys v0.11.0 + Compiling crc32fast v1.5.0 + Compiling log v0.4.29 + Compiling miniz_oxide v0.8.9 + Compiling zstd-sys v2.0.16+zstd.1.5.7 + Compiling ring v0.17.14 + Compiling block-buffer v0.10.4 + Compiling serde v1.0.228 + Compiling zmij v1.0.16 + Compiling once_cell v1.21.3 + Compiling digest v0.10.7 + Compiling lzma-sys v0.1.20 + Compiling bzip2-sys v0.1.13+1.0.8 + Compiling getrandom v0.2.17 + Compiling synstructure v0.13.2 + Compiling serde_json v1.0.149 + Compiling byteorder v1.5.0 + Compiling zstd-safe v7.2.4 + Compiling utf8parse v0.2.2 + Compiling untrusted v0.9.0 + Compiling thiserror v2.0.18 + Compiling anstyle-parse v0.2.7 + Compiling inout v0.1.4 + Compiling rustls v0.23.36 + Compiling utf8_iter v1.0.4 + Compiling is_terminal_polyfill v1.70.2 + Compiling crc-catalog v2.4.0 + Compiling zerofrom-derive v0.1.6 + Compiling yoke-derive v0.8.1 + Compiling displaydoc v0.2.5 + Compiling zerovec-derive v0.11.2 + Compiling zeroize_derive v1.4.3 + Compiling zerofrom v0.1.6 + Compiling yoke v0.8.1 + Compiling zerotrie v0.2.3 + Compiling zeroize v1.8.2 + Compiling rustls-pki-types v1.14.0 + Compiling zerovec v0.11.5 + Compiling serde_derive v1.0.228 + Compiling tinystr v0.8.2 + Compiling icu_locale_core v2.1.1 + Compiling potential_utf v0.1.4 + Compiling icu_collections v2.1.1 + Compiling icu_provider v2.1.1 + Compiling icu_normalizer v2.1.1 + Compiling icu_properties v2.1.2 + Compiling thiserror-impl v2.0.18 + Compiling object v0.37.3 + Compiling percent-encoding v2.3.2 + Compiling anstyle v1.0.13 + Compiling idna_adapter v1.2.1 + Compiling anstyle-query v1.1.5 + Compiling cpufeatures v0.2.17 + Compiling powerfmt v0.2.0 + Compiling itoa v1.0.17 + Compiling colorchoice v1.0.4 + Compiling autocfg v1.5.0 + Compiling rustix v0.38.44 + Compiling anstream v0.6.21 + Compiling deranged v0.5.5 + Compiling num-traits v0.2.19 + Compiling idna v1.1.0 + Compiling form_urlencoded v1.2.2 + Compiling webpki-roots v1.0.5 + Compiling crc v3.4.0 + Compiling cipher v0.4.4 + Compiling flate2 v1.1.8 + Compiling hmac v0.12.1 + Compiling bumpalo v3.19.1 + Compiling camino v1.2.2 + Compiling linux-raw-sys v0.4.15 + Compiling gimli v0.32.3 + Compiling winnow v0.7.14 + Compiling num-conv v0.1.0 + Compiling equivalent v1.0.2 + Compiling hashbrown v0.16.1 + Compiling rustls-webpki v0.103.9 + Compiling anyhow v1.0.100 + Compiling parking_lot_core v0.9.12 + Compiling zip v2.4.2 + Compiling time-core v0.1.7 + Compiling time v0.3.45 + Compiling addr2line v0.25.1 + Compiling toml_parser v1.0.6+spec-1.1.0 + Compiling indexmap v2.13.0 + Compiling zopfli v0.8.3 + Compiling pbkdf2 v0.12.2 + Compiling xz2 v0.1.7 + Compiling aes v0.8.4 + Compiling lzma-rs v0.3.0 + Compiling webpki-roots v0.26.11 + Compiling bzip2 v0.5.2 + Compiling url v2.5.8 + Compiling sha1 v0.10.6 + Compiling socks v0.3.4 + Compiling xattr v1.6.1 + Compiling toml_datetime v0.7.5+spec-1.1.0 + Compiling serde_spanned v1.0.4 + Compiling filetime v0.2.27 + Compiling dirs-sys-next v0.1.2 + Compiling constant_time_eq v0.3.1 + Compiling strsim v0.11.1 + Compiling heck v0.5.0 + Compiling clap_lex v0.7.7 + Compiling fastrand v2.3.0 + Compiling toml_writer v1.0.6+spec-1.1.0 + Compiling base64 v0.22.1 + Compiling unicode-width v0.2.2 + Compiling scopeguard v1.2.0 + Compiling rustc-demangle v0.1.27 + Compiling deflate64 v0.1.10 + Compiling backtrace v0.3.76 + Compiling console v0.16.2 + Compiling ureq v2.12.1 + Compiling lock_api v0.4.14 + Compiling toml v0.9.11+spec-1.1.0 + Compiling tempfile v3.24.0 + Compiling clap_builder v4.5.54 + Compiling clap_derive v4.5.49 + Compiling dirs-next v2.0.0 + Compiling tar v0.4.44 + Compiling fs4 v0.6.6 + Compiling uuid v1.19.0 + Compiling env_filter v0.1.4 + Compiling cargo-platform v0.3.2 + Compiling semver v1.0.27 + Compiling sysinfo v0.37.2 + Compiling siphasher v0.3.11 + Compiling is_executable v0.1.2 + Compiling iana-time-zone v0.1.64 + Compiling hex v0.4.3 + Compiling same-file v1.0.6 + Compiling env_home v0.1.0 + Compiling shell-words v1.1.1 + Compiling which v8.0.0 + Compiling dialoguer v0.12.0 + Compiling walkdir v2.5.0 + Compiling human-panic v2.0.6 + Compiling zstd v0.13.3 + Compiling chrono v0.4.43 + Compiling cargo_metadata v0.23.1 + Compiling env_logger v0.11.8 + Compiling binary-install v0.4.1 + Compiling parking_lot v0.12.5 + Compiling clap v4.5.54 + Compiling serde_ignored v0.1.14 + Compiling glob v0.3.3 + Compiling path-clean v1.0.1 + Compiling siphasher v1.0.1 + Compiling wasm-pack v0.14.0 + Finished `release` profile [optimized] target(s) in 53.07s + Installing /home/box/.cargo/bin/wasm-pack + Installed package `wasm-pack v0.14.0` (executable `wasm-pack`) diff --git a/docs/case-studies/issue-7/logs/cargo-test-lib-host.log b/docs/case-studies/issue-7/logs/cargo-test-lib-host.log new file mode 100644 index 0000000..5cb053d --- /dev/null +++ b/docs/case-studies/issue-7/logs/cargo-test-lib-host.log @@ -0,0 +1,9 @@ + Compiling doublets-web v0.1.2 (/tmp/gh-issue-solver-1777626107940) + Finished `test` profile [unoptimized + debuginfo] target(s) in 0.51s + Running unittests src/lib.rs (target/x86_64-unknown-linux-gnu/debug/deps/doublets_web-bc8fd13216357fc9) + +running 1 test +test tests::united_links_crud_round_trip ... ok + +test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.03s + diff --git a/docs/case-studies/issue-7/logs/cargo-test-license-metadata.log b/docs/case-studies/issue-7/logs/cargo-test-license-metadata.log new file mode 100644 index 0000000..71aa188 --- /dev/null +++ b/docs/case-studies/issue-7/logs/cargo-test-license-metadata.log @@ -0,0 +1,62 @@ + Compiling proc-macro2 v1.0.106 + Compiling cfg-if v1.0.4 + Compiling once_cell v1.21.4 + Compiling libm v0.2.16 + Compiling wasm-bindgen-shared v0.2.120 + Compiling libc v0.2.186 + Compiling wasm-bindgen v0.2.120 + Compiling num-traits v0.2.19 + Compiling unicode-ident v1.0.24 + Compiling rustix v1.1.4 + Compiling thiserror v2.0.18 + Compiling quote v1.0.45 + Compiling getrandom v0.4.2 + Compiling syn v2.0.117 + Compiling slab v0.4.12 + Compiling serde_core v1.0.228 + Compiling futures-core v0.3.32 + Compiling futures-task v0.3.32 + Compiling bitflags v2.11.1 + Compiling linux-raw-sys v0.12.1 + Compiling pin-project-lite v0.2.17 + Compiling futures-util v0.3.32 + Compiling zmij v1.0.21 + Compiling platform-num v0.8.0 + Compiling fastrand v2.4.1 + Compiling memmap2 v0.9.10 + Compiling serde_json v1.0.149 + Compiling allocator-api2 v0.4.0 + Compiling serde v1.0.228 + Compiling beef v0.5.2 + Compiling platform-trees v0.3.4 + Compiling leak_slice v0.2.0 + Compiling itoa v1.0.18 + Compiling memchr v2.8.0 + Compiling tap v1.0.1 + Compiling wasm-bindgen-test-shared v0.2.120 + Compiling cast v0.3.0 + Compiling tempfile v3.27.0 + Compiling oorandom v11.1.5 + Compiling nu-ansi-term v0.50.3 + Compiling wasm-bindgen-macro-support v0.2.120 + Compiling thiserror-impl v2.0.18 + Compiling serde_derive v1.0.228 + Compiling wasm-bindgen-test-macro v0.3.70 + Compiling async-trait v0.1.89 + Compiling platform-data v2.0.0 + Compiling platform-mem v0.3.0 + Compiling doublets v0.3.0 + Compiling wasm-bindgen-macro v0.2.120 + Compiling js-sys v0.3.97 + Compiling console_error_panic_hook v0.1.7 + Compiling wasm-bindgen-futures v0.4.70 + Compiling wasm-bindgen-test v0.3.70 + Compiling doublets-web v0.1.2 (/tmp/gh-issue-solver-1777626107940) + Finished `test` profile [unoptimized + debuginfo] target(s) in 12.81s + Running tests/license_metadata.rs (target/x86_64-unknown-linux-gnu/debug/deps/license_metadata-7e59d3da9213cec5) + +running 1 test +test public_license_metadata_uses_unlicense ... ok + +test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.02s + diff --git a/docs/case-studies/issue-7/logs/npm-pack-dry-run.log b/docs/case-studies/issue-7/logs/npm-pack-dry-run.log new file mode 100644 index 0000000..15198b1 --- /dev/null +++ b/docs/case-studies/issue-7/logs/npm-pack-dry-run.log @@ -0,0 +1,21 @@ +npm notice +npm notice 📦 doublets-web@0.1.2 +npm notice Tarball Contents +npm notice 1.2kB LICENSE +npm notice 2.1kB README.md +npm notice 19.2kB doublets_web_bg.js +npm notice 51.8kB doublets_web_bg.wasm +npm notice 1.6kB doublets_web.d.ts +npm notice 283B doublets_web.js +npm notice 764B package.json +npm notice Tarball Details +npm notice name: doublets-web +npm notice version: 0.1.2 +npm notice filename: doublets-web-0.1.2.tgz +npm notice package size: 26.5 kB +npm notice unpacked size: 76.9 kB +npm notice shasum: f154498fbd12d9c965fdc6b0ff0d83dd55452b23 +npm notice integrity: sha512-pNLKUDPToOKg4[...]wwO6/4jVV6VRw== +npm notice total files: 7 +npm notice +doublets-web-0.1.2.tgz diff --git a/docs/case-studies/issue-7/logs/package-version-license-from-metadata.log b/docs/case-studies/issue-7/logs/package-version-license-from-metadata.log new file mode 100644 index 0000000..99b99ea --- /dev/null +++ b/docs/case-studies/issue-7/logs/package-version-license-from-metadata.log @@ -0,0 +1,5 @@ +{ + "name": "doublets-web", + "version": "0.1.2", + "license": "Unlicense" +} diff --git a/docs/case-studies/issue-7/logs/rustup-target-add-wasm32.log b/docs/case-studies/issue-7/logs/rustup-target-add-wasm32.log new file mode 100644 index 0000000..895dcb9 --- /dev/null +++ b/docs/case-studies/issue-7/logs/rustup-target-add-wasm32.log @@ -0,0 +1 @@ +info: downloading component rust-std diff --git a/docs/case-studies/issue-7/logs/wasm-pack-build.log b/docs/case-studies/issue-7/logs/wasm-pack-build.log new file mode 100644 index 0000000..e2b4094 --- /dev/null +++ b/docs/case-studies/issue-7/logs/wasm-pack-build.log @@ -0,0 +1,843 @@ +[INFO wasm_pack::command] Running build command... +[DEBUG ureq::stream] connecting to crates.io:443 at 151.101.66.137:443 +[DEBUG rustls::client::hs] No cached session for DnsName("crates.io") +[DEBUG rustls::client::hs] Not resuming any session +[DEBUG rustls::client::hs] Using ciphersuite TLS13_AES_128_GCM_SHA256 +[DEBUG rustls::client::tls13] Not resuming +[DEBUG rustls::client::tls13] TLS1.3 encrypted extensions: ServerExtensions { server_name_ack: (), unknown_extensions: {}, .. } +[DEBUG rustls::client::hs] ALPN protocol is None +[DEBUG ureq::stream] created stream: Stream(RustlsStream) +[DEBUG ureq::unit] sending request GET https://crates.io/api/v1/crates/wasm-pack +[DEBUG ureq::unit] writing prelude: GET /api/v1/crates/wasm-pack HTTP/1.1 + Host: crates.io + User-Agent: wasm-pack/0.14.0 (https://github.com/drager/wasm-pack) + Accept: */* + accept-encoding: gzip +[DEBUG ureq::response] Chunked body in response +[DEBUG ureq::unit] response 200 to GET https://crates.io/api/v1/crates/wasm-pack +[DEBUG ureq::pool] adding stream to pool: https|crates.io|443 -> Stream(RustlsStream) +[DEBUG ureq::stream] dropping stream: Stream(RustlsStream) +[INFO wasm_pack::command::build] Checking rustc version... +[INFO wasm_pack::command::build] rustc version is 94. +[INFO wasm_pack::command::build] Checking crate configuration... +[INFO wasm_pack::command::build] Crate is correctly configured. +[INFO wasm_pack::command::build] Checking for wasm-target... +[INFO]: 🎯 Checking for the Wasm target... +[INFO wasm_pack::build::wasm_target] Found wasm32-unknown-unknown in "/home/box/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/wasm32-unknown-unknown/lib" +[INFO wasm_pack::command::build] Checking for wasm-target was successful. +[INFO wasm_pack::command::build] Building wasm... +[INFO]: 🌀 Compiling to Wasm... + Compiling proc-macro2 v1.0.106 + Compiling unicode-ident v1.0.24 + Compiling quote v1.0.45 + Compiling wasm-bindgen-shared v0.2.120 + Compiling autocfg v1.5.0 + Compiling rustversion v1.0.22 + Compiling once_cell v1.21.4 + Compiling thiserror v2.0.18 + Compiling bumpalo v3.20.2 + Compiling num-traits v0.2.19 + Compiling cfg-if v1.0.4 + Compiling fastrand v2.4.1 + Compiling pin-project-lite v0.2.17 + Compiling beef v0.5.2 + Compiling wasm-bindgen v0.2.120 + Compiling tempfile v3.27.0 + Compiling allocator-api2 v0.4.0 + Compiling futures-core v0.3.32 + Compiling syn v2.0.117 + Compiling futures-task v0.3.32 + Compiling memmap2 v0.9.10 + Compiling slab v0.4.12 + Compiling leak_slice v0.2.0 + Compiling futures-util v0.3.32 + Compiling tap v1.0.1 + Compiling platform-num v0.8.0 + Compiling platform-trees v0.3.4 + Compiling wasm-bindgen-macro-support v0.2.120 + Compiling thiserror-impl v2.0.18 + Compiling platform-mem v0.3.0 + Compiling platform-data v2.0.0 + Compiling doublets v0.3.0 + Compiling wasm-bindgen-macro v0.2.120 + Compiling console_error_panic_hook v0.1.7 + Compiling js-sys v0.3.97 + Compiling doublets-web v0.1.2 (/tmp/gh-issue-solver-1777626107940) + Finished `release` profile [optimized] target(s) in 16.13s +[INFO wasm_pack::command::build] wasm built at "/tmp/gh-issue-solver-1777626107940/target/wasm32-unknown-unknown/release/doublets_web.wasm". +[INFO wasm_pack::command::build] Creating a pkg directory... +[INFO wasm_pack::command::build] Created a pkg directory at "/tmp/gh-issue-solver-1777626107940". +[INFO wasm_pack::command::build] Identifying wasm-bindgen dependency... +[INFO wasm_pack::command::build] Installing wasm-bindgen-cli... +[INFO]: ⬇️ Installing wasm-bindgen... +[DEBUG ureq::stream] connecting to github.com:443 at 140.82.121.4:443 +[DEBUG rustls::client::hs] No cached session for DnsName("github.com") +[DEBUG rustls::client::hs] Not resuming any session +[DEBUG rustls::client::hs] Using ciphersuite TLS13_AES_128_GCM_SHA256 +[DEBUG rustls::client::tls13] Not resuming +[DEBUG rustls::client::tls13] TLS1.3 encrypted extensions: ServerExtensions { server_name_ack: (), unknown_extensions: {}, .. } +[DEBUG rustls::client::hs] ALPN protocol is None +[DEBUG ureq::stream] created stream: Stream(RustlsStream) +[DEBUG ureq::unit] sending request GET https://github.com/wasm-bindgen/wasm-bindgen/releases/download/0.2.120/wasm-bindgen-0.2.120-x86_64-unknown-linux-musl.tar.gz +[DEBUG ureq::unit] writing prelude: GET /wasm-bindgen/wasm-bindgen/releases/download/0.2.120/wasm-bindgen-0.2.120-x86_64-unknown-linux-musl.tar.gz HTTP/1.1 + Host: github.com + User-Agent: ureq/2.12.1 + Accept: */* + accept-encoding: gzip +[DEBUG ureq::response] zero-length body returning stream directly to pool +[DEBUG ureq::pool] adding stream to pool: https|github.com|443 -> Stream(RustlsStream) +[DEBUG ureq::unit] response 302 to GET https://github.com/wasm-bindgen/wasm-bindgen/releases/download/0.2.120/wasm-bindgen-0.2.120-x86_64-unknown-linux-musl.tar.gz +[DEBUG ureq::unit] redirect 302 https://github.com/wasm-bindgen/wasm-bindgen/releases/download/0.2.120/wasm-bindgen-0.2.120-x86_64-unknown-linux-musl.tar.gz -> https://release-assets.githubusercontent.com/github-production-release-asset/114685405/ee47fe45-0b1a-4157-af26-9b8a278387a6?sp=r&sv=2018-11-09&sr=b&spr=https&se=2026-05-01T10%3A07%3A59Z&rscd=attachment%3B+filename%3Dwasm-bindgen-0.2.120-x86_64-unknown-linux-musl.tar.gz&rsct=application%2Foctet-stream&skoid=96c2d410-5711-43a1-aedd-ab1947aa7ab0&sktid=398a6654-997b-47e9-b12b-9515b896b4de&skt=2026-05-01T09%3A07%3A30Z&ske=2026-05-01T10%3A07%3A59Z&sks=b&skv=2018-11-09&sig=SmwEOEJXK2%2Bg3GVj7L75eNxCaI%2FWT%2B79WuKqSlxRu4U%3D&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmVsZWFzZS1hc3NldHMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIiwia2V5Ijoia2V5MSIsImV4cCI6MTc3NzYyODMwMCwibmJmIjoxNzc3NjI2NTAwLCJwYXRoIjoicmVsZWFzZWFzc2V0cHJvZHVjdGlvbi5ibG9iLmNvcmUud2luZG93cy5uZXQifQ.0lkXqbXQrfijR3TUI1szR6jbtPy9isySqeg7MgZ3pBI&response-content-disposition=attachment%3B%20filename%3Dwasm-bindgen-0.2.120-x86_64-unknown-linux-musl.tar.gz&response-content-type=application%2Foctet-stream +[DEBUG ureq::stream] connecting to release-assets.githubusercontent.com:443 at 185.199.110.133:443 +[DEBUG rustls::client::hs] No cached session for DnsName("release-assets.githubusercontent.com") +[DEBUG rustls::client::hs] Not resuming any session +[DEBUG rustls::client::hs] Using ciphersuite TLS13_AES_128_GCM_SHA256 +[DEBUG rustls::client::tls13] Not resuming +[DEBUG rustls::client::tls13] TLS1.3 encrypted extensions: ServerExtensions { server_name_ack: (), unknown_extensions: {}, .. } +[DEBUG rustls::client::hs] ALPN protocol is None +[DEBUG ureq::stream] created stream: Stream(RustlsStream) +[DEBUG ureq::unit] sending request GET https://release-assets.githubusercontent.com/github-production-release-asset/114685405/ee47fe45-0b1a-4157-af26-9b8a278387a6?sp=r&sv=2018-11-09&sr=b&spr=https&se=2026-05-01T10%3A07%3A59Z&rscd=attachment%3B+filename%3Dwasm-bindgen-0.2.120-x86_64-unknown-linux-musl.tar.gz&rsct=application%2Foctet-stream&skoid=96c2d410-5711-43a1-aedd-ab1947aa7ab0&sktid=398a6654-997b-47e9-b12b-9515b896b4de&skt=2026-05-01T09%3A07%3A30Z&ske=2026-05-01T10%3A07%3A59Z&sks=b&skv=2018-11-09&sig=SmwEOEJXK2%2Bg3GVj7L75eNxCaI%2FWT%2B79WuKqSlxRu4U%3D&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmVsZWFzZS1hc3NldHMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIiwia2V5Ijoia2V5MSIsImV4cCI6MTc3NzYyODMwMCwibmJmIjoxNzc3NjI2NTAwLCJwYXRoIjoicmVsZWFzZWFzc2V0cHJvZHVjdGlvbi5ibG9iLmNvcmUud2luZG93cy5uZXQifQ.0lkXqbXQrfijR3TUI1szR6jbtPy9isySqeg7MgZ3pBI&response-content-disposition=attachment%3B%20filename%3Dwasm-bindgen-0.2.120-x86_64-unknown-linux-musl.tar.gz&response-content-type=application%2Foctet-stream +[DEBUG ureq::unit] writing prelude: GET /github-production-release-asset/114685405/ee47fe45-0b1a-4157-af26-9b8a278387a6?sp=r&sv=2018-11-09&sr=b&spr=https&se=2026-05-01T10%3A07%3A59Z&rscd=attachment%3B+filename%3Dwasm-bindgen-0.2.120-x86_64-unknown-linux-musl.tar.gz&rsct=application%2Foctet-stream&skoid=96c2d410-5711-43a1-aedd-ab1947aa7ab0&sktid=398a6654-997b-47e9-b12b-9515b896b4de&skt=2026-05-01T09%3A07%3A30Z&ske=2026-05-01T10%3A07%3A59Z&sks=b&skv=2018-11-09&sig=SmwEOEJXK2%2Bg3GVj7L75eNxCaI%2FWT%2B79WuKqSlxRu4U%3D&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmVsZWFzZS1hc3NldHMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIiwia2V5Ijoia2V5MSIsImV4cCI6MTc3NzYyODMwMCwibmJmIjoxNzc3NjI2NTAwLCJwYXRoIjoicmVsZWFzZWFzc2V0cHJvZHVjdGlvbi5ibG9iLmNvcmUud2luZG93cy5uZXQifQ.0lkXqbXQrfijR3TUI1szR6jbtPy9isySqeg7MgZ3pBI&response-content-disposition=attachment%3B%20filename%3Dwasm-bindgen-0.2.120-x86_64-unknown-linux-musl.tar.gz&response-content-type=application%2Foctet-stream HTTP/1.1 + Host: release-assets.githubusercontent.com + User-Agent: ureq/2.12.1 + Accept: */* + accept-encoding: gzip +[DEBUG ureq::response] Streaming body until content-length: 11326853 +[DEBUG ureq::unit] response 200 to GET https://release-assets.githubusercontent.com/github-production-release-asset/114685405/ee47fe45-0b1a-4157-af26-9b8a278387a6?sp=r&sv=2018-11-09&sr=b&spr=https&se=2026-05-01T10%3A07%3A59Z&rscd=attachment%3B+filename%3Dwasm-bindgen-0.2.120-x86_64-unknown-linux-musl.tar.gz&rsct=application%2Foctet-stream&skoid=96c2d410-5711-43a1-aedd-ab1947aa7ab0&sktid=398a6654-997b-47e9-b12b-9515b896b4de&skt=2026-05-01T09%3A07%3A30Z&ske=2026-05-01T10%3A07%3A59Z&sks=b&skv=2018-11-09&sig=SmwEOEJXK2%2Bg3GVj7L75eNxCaI%2FWT%2B79WuKqSlxRu4U%3D&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmVsZWFzZS1hc3NldHMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIiwia2V5Ijoia2V5MSIsImV4cCI6MTc3NzYyODMwMCwibmJmIjoxNzc3NjI2NTAwLCJwYXRoIjoicmVsZWFzZWFzc2V0cHJvZHVjdGlvbi5ibG9iLmNvcmUud2luZG93cy5uZXQifQ.0lkXqbXQrfijR3TUI1szR6jbtPy9isySqeg7MgZ3pBI&response-content-disposition=attachment%3B%20filename%3Dwasm-bindgen-0.2.120-x86_64-unknown-linux-musl.tar.gz&response-content-type=application%2Foctet-stream +[DEBUG ureq::stream] dropping stream: Stream(RustlsStream) +[DEBUG ureq::stream] dropping stream: Stream(RustlsStream) +[INFO wasm_pack::command::build] Installing wasm-bindgen-cli was successful. +[INFO wasm_pack::command::build] Building the wasm bindings... +[INFO wasm_pack::child] Running "/home/box/.cache/.wasm-pack/wasm-bindgen-6100c0c263093c56/wasm-bindgen" "--version" +[INFO wasm_pack::child] Running "/home/box/.cache/.wasm-pack/wasm-bindgen-6100c0c263093c56/wasm-bindgen" "--version" +[INFO wasm_pack::child] Running "/home/box/.cache/.wasm-pack/wasm-bindgen-6100c0c263093c56/wasm-bindgen" "/tmp/gh-issue-solver-1777626107940/target/wasm32-unknown-unknown/release/doublets_web.wasm" "--out-dir" "/tmp/gh-issue-solver-1777626107940/pkg" "--typescript" "--target" "bundler" +[2026-05-01T09:08:21Z DEBUG walrus::module::types] parsing type section +[2026-05-01T09:08:21Z DEBUG walrus::module::imports] parse import section +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] parse function section +[2026-05-01T09:08:21Z DEBUG walrus::module::tables] parse table section +[2026-05-01T09:08:21Z DEBUG walrus::module::memories] parse memory section +[2026-05-01T09:08:21Z DEBUG walrus::module::globals] parse global section +[2026-05-01T09:08:21Z DEBUG walrus::module::exports] parse export section +[2026-05-01T09:08:21Z DEBUG walrus::module::elements] parse element section +[2026-05-01T09:08:21Z DEBUG walrus::module::data] parse data section +[2026-05-01T09:08:21Z DEBUG walrus::module] parsing custom section `__wasm_bindgen_unstable` +[2026-05-01T09:08:21Z DEBUG walrus::module] parse name section +[2026-05-01T09:08:21Z DEBUG walrus::module::producers] parse producers section +[2026-05-01T09:08:21Z DEBUG walrus::module] parsing custom section `target_features` +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] parse code section +[2026-05-01T09:08:21Z DEBUG walrus::module] parse complete +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] custom section '__wasm_bindgen_unstable' looks like a Wasm bindgen section +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 81 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 91 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 81 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 73 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 79 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 99 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 86 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 104 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 109 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 99 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 71 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 75 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 117 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 39 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 39 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 84 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 69 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 39 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 233 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 77 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 87 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 302 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 99 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 97 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 89 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 186 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 490 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 5603 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 633 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 3224 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2273 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 3209 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 272 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1064 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 166 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 3356 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 509 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 160 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 378 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1856 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 858 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 367 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 4053 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 765 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1055 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 943 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2084 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2107 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 228 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 5224 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 163 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 395 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 547 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2176 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2130 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2130 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 375 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2266 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 169 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1458 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 8068 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2146 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 231 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 385 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 91 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2268 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 178 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 364 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 163 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2199 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1902 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2153 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1427 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 8288 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2153 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2107 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 737 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1689 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 5910 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1406 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 251 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 329 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 162 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 262 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2107 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1380 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1906 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 324 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 182 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 107 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 5686 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 244 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1266 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 819 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 122 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 126 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 238 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 403 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 122 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 340 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 110 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1985 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 400 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 272 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 229 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 168 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 288 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1107 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 803 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 232 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 111 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 365 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 4510 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 122 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 374 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 640 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 275 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 138 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 758 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 138 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 374 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 450 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 115 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1350 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 155 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 218 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 136 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 114 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1135 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 274 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 208 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1491 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 108 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 117 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 314 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 96 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 131 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 280 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 115 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1412 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 110 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 840 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 384 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1368 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 107 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 212 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 182 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 123 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 127 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 593 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 130 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 122 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 121 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 156 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 183 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 645 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 363 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 394 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 109 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 5794 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 145 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 118 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 170 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 238 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 106 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1959 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 129 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 130 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 375 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 127 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 270 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 3224 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 127 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 229 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 122 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 885 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 267 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 304 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 109 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 294 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 988 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 198 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 198 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 367 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 189 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 178 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 396 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 482 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 516 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1119 +[2026-05-01T09:08:21Z DEBUG wasm_bindgen_cli_support] Exception handling version: None +[2026-05-01T09:08:21Z DEBUG walrus::passes::used] starting to calculate used set +[2026-05-01T09:08:21Z DEBUG walrus::passes::used] starting to calculate used set +[2026-05-01T09:08:21Z DEBUG walrus::module] start emit +[2026-05-01T09:08:21Z DEBUG walrus::module::types] emitting type section +[2026-05-01T09:08:21Z DEBUG walrus::module::imports] emit import section +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function section +[2026-05-01T09:08:21Z DEBUG walrus::module::tables] emit table section +[2026-05-01T09:08:21Z DEBUG walrus::module::memories] emit memory section +[2026-05-01T09:08:21Z DEBUG walrus::module::tags] emit tag section +[2026-05-01T09:08:21Z DEBUG walrus::module::globals] emit global section +[2026-05-01T09:08:21Z DEBUG walrus::module::exports] emit export section +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit code section +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 232 } Some("std::panicking::panic_with_hook::h77afe0ddfda2cb89") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 291 } Some("core::option::unwrap_failed::h351295eb7223eb75") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 250 } Some("::take_box::h0536373fffc709d7") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 119 } Some("core::ptr::drop_in_place::h0df0d20a14497397[1]") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 21 } Some("::fmt::ha795e604dc1e6ee6") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 140 } Some("core::ptr::drop_in_place::h801ca634d7c6ae68") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 15 } Some("core::ptr::drop_in_place>::h9c00330ca46c8d17") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 1239 } Some("console_error_panic_hook::Error::new::__wbg_new_227d7c05414eb861::h5345740353ea913d externref shim") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 209 } Some("__rustc[16f1505adc47261a]::__rdl_alloc") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 235 } Some("core::ptr::drop_in_place>>::hd8232a1684e31e26") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 90 } Some("::fmt::hc36cb7baeefa6fe9") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 238 } Some("core::ptr::drop_in_place::h5f918006ef5d0ce0") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 135 } Some("__rustc[16f1505adc47261a]::__rust_realloc") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 125 } Some("alloc::raw_vec::RawVecInner::finish_grow::ha84015c8647457f1") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 256 } Some("core::ptr::drop_in_place::ha81d5d6d1f64702a") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 169 } Some("__wbindgen_exn_store") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 114 } Some("<&T as core::fmt::Display>::fmt::hff702068c912e861") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 222 } Some("::type_id::h054965a0d695c3ae") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 122 } Some("<&T as core::fmt::Display>::fmt::h570037b798572bdc") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 133 } Some("__rustc[16f1505adc47261a]::__rust_alloc") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 141 } Some("::fmt::ha795e604dc1e6ee6[1]") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 149 } Some("wasm_bindgen::__rt::throw_null::h38abeb78b614a0e5") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 150 } Some("wasm_bindgen::__rt::borrow_fail::he12e5cde58e1a60d") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 177 } Some("wasm_bindgen::throw_str::habd284be07edae10") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 202 } Some("<&T as core::fmt::Debug>::fmt::ha04dffd1989e3ca8") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 204 } Some("<&T as core::fmt::Display>::fmt::h0d418b77f3da5204") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 155 } Some("alloc::raw_vec::RawVecInner::finish_grow::h66055a1724438cc2") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 220 } Some("__rustc[16f1505adc47261a]::__rust_alloc_error_handler") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 249 } Some("::as_str::he125ac6f7c5f4796") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 254 } Some("alloc::alloc::handle_alloc_error::hec8d3aa2a30efaa7") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 230 } Some("alloc::raw_vec::RawVecInner::finish_grow::h4217bbf3026c2f59") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 257 } Some("::fmt::ha795e604dc1e6ee6[2]") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 269 } Some("::fmt::h790d2f8117538842") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 293 } Some("::fmt::h035f2721315d9af6") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 289 } Some("core::fmt::Formatter::debug_struct_field2_finish::h08cac909ec906e0d") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 1240 } Some("console_error_panic_hook::Error::stack::__wbg_stack_3b0d974bbf31e44f::h5ab492f182152b6a externref shim") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 1241 } Some("wasm_bindgen::__wbindgen_string_get::__wbg___wbindgen_string_get_965592073e5d848c::h07606aa4b4f178aa externref shim") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 126 } Some("alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle::h4c74027cce16a78f") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 1242 } Some("wasm_bindgen::__wbindgen_number_get::__wbg___wbindgen_number_get_dd6d69a6079f26f1::h0c53db1997065505 externref shim") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 91 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::hf50eec3c7ec737af") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 173 } Some("wasm_bindgen::__wbindgen_throw::h5acf3845380e96a2") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 174 } Some("wasm_bindgen::__wbindgen_typeof::h500cdafd4708fcea") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 317 } Some("wasm_bindgen::convert::closures::_::invoke::h7cc1d33d53793262") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 219 } Some("std::sys::backtrace::__rust_end_short_backtrace::h46ab1174c51ef229") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 228 } Some("std::sys::backtrace::__rust_end_short_backtrace::h81a6ec13af23b259") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 231 } Some("std::alloc::default_alloc_error_hook::h4ae318a4060b4b2e") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 321 } Some("wasm_bindgen::convert::closures::_::invoke::haf1ab5924c5f5a5a") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 273 } Some("core::panicking::panic_fmt::h6651313c3e2c6c2f") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 233 } Some("std::panicking::panic_count::is_zero_slow_path::h9b5765c0b9fb1921") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 224 } Some("<&T as core::fmt::Display>::fmt::h919466cac3e4a537") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 41 } Some("__wbg_link_free") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 294 } Some("core::option::expect_failed::h7377ee23bee75e81") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 42 } Some("__wbg_linkrange_free") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 243 } Some("::fmt::hc36cb7baeefa6fe9[1]") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 171 } Some("__wbindgen_malloc") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 245 } Some("::fmt::hc8d087d6955a60e5") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 248 } Some("::get::h1386487f02069651") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 246 } Some("::fmt::he70713942f8152e4") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 43 } Some("__wbg_linksconstants_free") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 272 } Some("<&T as core::fmt::Display>::fmt::h461148083df94021") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 287 } Some("core::fmt::Formatter::pad_integral::write_prefix::hca46ac35d6da67d6") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 115 } Some("core::fmt::Write::write_fmt::hd1bf9ec5e3f97d62") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 134 } Some("__rustc[16f1505adc47261a]::__rust_dealloc") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 139 } Some("core::fmt::Write::write_fmt::he770fc2dd5839c80") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 208 } Some("__rustc[16f1505adc47261a]::rust_panic") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 237 } Some("core::fmt::Write::write_fmt::h628b111ce4addafb") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 255 } Some("core::fmt::Write::write_fmt::hcb33ccda108f2947") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 264 } Some("alloc::raw_vec::capacity_overflow::h0af0840ea1b2ff66") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 280 } Some("core::fmt::Write::write_fmt::had1338797e9284de") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 117 } Some("core::ops::function::FnMut::call_mut::hbd890e9143d1e0f1") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 118 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::he06b79760b9f69cc") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 207 } Some("__rustc[16f1505adc47261a]::__rust_start_panic") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 136 } Some("__rustc[16f1505adc47261a]::__rust_no_alloc_shim_is_unstable_v2") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 212 } Some("__rustc[16f1505adc47261a]::__rust_abort") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 38 } Some("__wbg_get_linksconstants_skip") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 211 } Some("dlmalloc::dlmalloc::Dlmalloc::malloc::he97e96981fab807e") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 223 } Some("::type_id::h81f53a1fd46151f1") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 261 } Some("alloc::raw_vec::handle_error::h9ace31a903e6893e") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 281 } Some("core::panicking::panic::h0149fc8f1656305a") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 1243 } Some("wasm_bindgen::__wbindgen_typeof::__wbg___wbindgen_typeof_b2c23837ad6cde31::h30d85d6df56db1ae externref shim") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 1244 } Some("Ref(String) -> Externref externref shim") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 170 } Some("__wbindgen_free") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 290 } Some("core::fmt::Formatter::write_str::h906c9016730dabac") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 1237 } Some("doublets_web:: for wasm_bindgen::JsValue>::from::__wbg_link_new::h3eea124efc93b581 externref shim") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 267 } Some("<&T as core::fmt::Debug>::fmt::h69c822ac52be0e12") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 298 } Some(" as core::fmt::Debug>::fmt::h642e5eea88bb5ba2") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 1247 } Some("unitedlinks_each externref shim multivalue shim") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 218 } Some("__rustc[16f1505adc47261a]::rust_begin_unwind") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 1249 } Some("unitedlinks_delete multivalue shim") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 286 } Some("core::fmt::Formatter::debug_list::h25e734e3365b69f4") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 93 } Some("doublets::mem::unit::store::Store::each_core::h5fc9e54a5404a36c") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 1246 } Some("unitedlinks_new multivalue shim") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 1248 } Some("unitedlinks_create multivalue shim") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 26 } Some("__wbg_get_link_from_id") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 27 } Some("__wbg_get_link_id") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 28 } Some("__wbg_get_link_to_id") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 29 } Some("__wbg_get_linksconstants__break") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 30 } Some("__wbg_get_linksconstants__continue") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 31 } Some("__wbg_get_linksconstants__null") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 32 } Some("__wbg_get_linksconstants_any") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 33 } Some("__wbg_get_linksconstants_error") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 35 } Some("__wbg_get_linksconstants_index_part") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 37 } Some("__wbg_get_linksconstants_itself") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 123 } Some(" as core::fmt::Display>::fmt::hb9ee5b8fc93a43c6") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 95 } Some("doublets::data::traits::Doublets::create_by::h5168432de0f85f68") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 200 } Some("__externref_table_alloc") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 247 } Some("dlmalloc::dlmalloc::Dlmalloc::insert_large_chunk::hc7cb11ca1345ed38") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 226 } Some("::fmt::h65634188156334a3") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 16 } Some("doublets_web::UnitedLinks::each::h34e5d9ec26e626ef") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 83 } Some("unitedlinks_count") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 283 } Some("core::fmt::builders::DebugStruct::field::hd6fb479e598dd824") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 279 } Some("core::slice::index::slice_index_fail::hfe243a02a41519a0") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 82 } Some("unitedlinks_constants") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 124 } Some("doublets::mem::resize_mem::ha55f223e88843398") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 168 } Some("__wbindgen_destroy_closure") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 79 } Some("linksconstants_via_external") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 240 } Some("core::panic::PanicPayload::as_str::h17c1d5120cb39a3f") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 39 } Some("__wbg_get_linksconstants_source_part") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 40 } Some("__wbg_get_linksconstants_target_part") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 80 } Some("linksconstants_via_only_external") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 266 } Some("core::fmt::num::::fmt::h53aa0353012ac719") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 44 } Some("__wbg_set_link_from_id") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 45 } Some("__wbg_set_link_id") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 46 } Some("__wbg_set_link_to_id") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 244 } Some("::fmt::hb9180c2d4ce39d24") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 225 } Some("alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle::hcef08ec0cc696d81") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 47 } Some("__wbg_set_linksconstants__break") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 48 } Some("__wbg_set_linksconstants__continue") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 172 } Some("__wbindgen_realloc") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 49 } Some("__wbg_set_linksconstants__null") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 52 } Some("__wbg_set_linksconstants_external_range") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 205 } Some("core::fmt::num::::fmt::ha9ddefa9c2849ac3") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 50 } Some("__wbg_set_linksconstants_any") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 22 } Some("::write_char::h32949ed49a1ffdbf") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 116 } Some("core::ops::function::Fn::call::h2f642f7a4f0b297e") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 199 } Some("__externref_drop_slice") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 265 } Some("core::fmt::write::h31474238f266a14a") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 120 } Some("::write_char::h32949ed49a1ffdbf[1]") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 251 } Some("::get::heb4b8bac6804dc2b") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 285 } Some("core::fmt::builders::DebugList::finish::hc753708777d978b0") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 292 } Some("core::cell::panic_already_borrowed::hed79291954bfa6ad") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 14 } Some("doublets_web::UnitedLinks::new::hcac9681db6ee84a8") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 138 } Some("alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle::h4cf1b50dbfcd2385") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 1245 } Some("unitedlinks_each externref shim") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 1250 } Some("unitedlinks_update multivalue shim") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 259 } Some("alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle::h4a4baaf90ee85523") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 104 } Some("alloc::rc::Rc::drop_slow::hc184b7bb8dad5fa5") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 105 } Some("alloc::rc::Rc::drop_slow::hce37b89408f27a68") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 54 } Some("__wbg_set_linksconstants_internal_range") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 106 } Some("alloc::rc::Rc::drop_slow::hf5c90271839070a8") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 110 } Some("<&T as core::fmt::Debug>::fmt::h29144ffcbe7bd46e") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 315 } Some("wasm_bindgen::convert::closures::_::invoke::h64bce7871b363074") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 262 } Some("alloc::raw_vec::RawVecInner::finish_grow::h3f58234d4b0bf44e") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 36 } Some("__wbg_get_linksconstants_internal_range") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 34 } Some("__wbg_get_linksconstants_external_range") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 241 } Some("::write_char::h32949ed49a1ffdbf[3]") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 277 } Some("core::fmt::num::::fmt::he6fbcf49a3276d84") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 142 } Some("::write_char::h32949ed49a1ffdbf[2]") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 278 } Some("core::fmt::num::::fmt::h05406171d1c9dd7b") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 258 } Some("::write_char::h32949ed49a1ffdbf[4]") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 100 } Some("doublets::mem::unit::generic::targets_recursionless_size_balanced_tree::each_usages_core::hbd4711a7a13b3606") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 130 } Some("doublets::mem::unit::generic::sources_recursionless_size_balanced_tree::each_usages_core::h0e685bc98ea0a6a5") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 19 } Some("doublets_web::UnitedLinks::update::h0a2df2b52c8fb391") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 107 } Some(" as doublets::mem::traits::LinksList>::attach_as_first::h7d07b9b3772dfd10") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 284 } Some("core::fmt::builders::DebugSet::entry::h614b20745ed38459") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 252 } Some("::take_box::ha4d04ad03cee361a") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 17 } Some("doublets_web::UnitedLinks::create::hf31a9bdced4af42e") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 227 } Some("std::panicking::panic_handler::{{closure}}::hf36efc37fdd11196") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 18 } Some("doublets_web::UnitedLinks::delete::h2c88f531f1fb889d") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 236 } Some("std::panicking::set_hook::h9454de0bb90a00ee") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 201 } Some("__externref_table_dealloc") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 111 } Some("<&T as core::fmt::Debug>::fmt::h666cb54f6e2c8d63") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 306 } Some("wasm_bindgen::convert::closures::_::invoke::h2f23fb6b44526718") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 144 } Some("alloc::raw_vec::RawVecInner::finish_grow::h9faab99aca585e64") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 51 } Some("__wbg_set_linksconstants_error") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 53 } Some("__wbg_set_linksconstants_index_part") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 55 } Some("__wbg_set_linksconstants_itself") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 56 } Some("__wbg_set_linksconstants_skip") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 57 } Some("__wbg_set_linksconstants_source_part") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 98 } Some("platform_trees::trees::iterative_size_balanced_tree::IterativeSizeBalancedTree::detach_core::h60ac0d6875b27a94") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 253 } Some("::alloc::h5d11e6618597802f") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 58 } Some("__wbg_set_linksconstants_target_part") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 307 } Some("wasm_bindgen::convert::closures::_::invoke::h2f6c724266265500") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 221 } Some("std::alloc::rust_oom::hbbbc0258d349aa94") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 109 } Some("std::sys::sync::once::no_threads::Once::call::h215c981b736f4c70") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 325 } Some("wasm_bindgen::convert::closures::_::invoke::hf5f5224cd7f5e01f") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 213 } Some("__rustc[16f1505adc47261a]::__rdl_dealloc") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 295 } Some("core::result::unwrap_failed::h8a0dea2fe721e8ce") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 271 } Some("core::fmt::num::imp::::_fmt_inner::he63902c806bd0202") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 217 } Some("dlmalloc::dlmalloc::Dlmalloc::dispose_chunk::h0e84f108fd9f7b7c") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 304 } Some("wasm_bindgen::convert::closures::_::invoke::h2abc9f554ed2bd47") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 275 } Some("core::fmt::num::imp::::fmt::h09880411cb7be385") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 137 } Some("console_error_panic_hook::hook::h4e584462cd8c0146") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 324 } Some("wasm_bindgen::convert::closures::_::invoke::hd8163539360dc05f") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 239 } Some("core::ptr::drop_in_place::hf7b8d0e0fb4c83c3") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 112 } Some("<&T as core::fmt::Display>::fmt::h5b9c2866b70c0e8e") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 299 } Some("wasm_bindgen::convert::closures::_::invoke::h04db168a14285345") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 305 } Some("wasm_bindgen::convert::closures::_::invoke::h2d38bb4cf5452a2c") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 302 } Some("wasm_bindgen::convert::closures::_::invoke::h1e09a658dad4150f") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 308 } Some("wasm_bindgen::convert::closures::_::invoke::h36629e6c911117a7") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 96 } Some("doublets::data::traits::Doublets::delete_by::h11eb5035bdca48e0") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 309 } Some("wasm_bindgen::convert::closures::_::invoke::h37eda0b11d6332a9") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 128 } Some("platform_trees::trees::iterative_size_balanced_tree::IterativeSizeBalancedTree::detach_core::h1ffc4bbaf4132694") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 313 } Some("wasm_bindgen::convert::closures::_::invoke::h52b89ad42113008f") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 311 } Some("wasm_bindgen::convert::closures::_::invoke::h46759187ab124fea") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 316 } Some("wasm_bindgen::convert::closures::_::invoke::h6667d81d8a3dfb57") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 312 } Some("wasm_bindgen::convert::closures::_::invoke::h467ca30850140f09") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 314 } Some("wasm_bindgen::convert::closures::_::invoke::h559ff5da850240a3") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 319 } Some("wasm_bindgen::convert::closures::_::invoke::h8d8f5873a1f87455") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 297 } Some("::fmt::he6997221335e102e") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 320 } Some("wasm_bindgen::convert::closures::_::invoke::h963cb9d2179f696c") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 322 } Some("wasm_bindgen::convert::closures::_::invoke::hbe29e5806d6f8c38") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 300 } Some("wasm_bindgen::convert::closures::_::invoke::h06d65176a0206f60") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 88 } Some("unitedlinks_update") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 323 } Some("wasm_bindgen::convert::closures::_::invoke::hcfb54d47d5a6b06f") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 318 } Some("wasm_bindgen::convert::closures::_::invoke::h8743e34b0b7fa4e1") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 78 } Some("linksconstants_new") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 84 } Some("unitedlinks_create") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 263 } Some("alloc::fmt::format::format_inner::h17065fade03a5f8e") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 274 } Some("core::panicking::panic_bounds_check::he16a4bbc04eea6a6") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 85 } Some("unitedlinks_delete") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 108 } Some(" as doublets::mem::traits::LinksList>::detach::h915044a121eae864") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 301 } Some("wasm_bindgen::convert::closures::_::invoke::h1b18ae346b27fada") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 303 } Some("wasm_bindgen::convert::closures::_::invoke::h24f23c873e3dd7eb") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 1238 } Some("js_sys::Function::call1::__wbg_call_a41d6421b30a32c5::h86e3d769092763bc externref shim") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 210 } Some("dlmalloc::dlmalloc::Dlmalloc::memalign::h4d574c3a3414c418") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 206 } Some("::fmt::h6b07f0f4d0848df9") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 59 } Some("__wbg_unitedlinks_free") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 101 } Some(" as doublets::mem::traits::LinksTree>::count_usages::hbf7911b564b59c95") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 23 } Some("::write_str::he0f136bfd437b8d6") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 268 } Some("core::fmt::Formatter::pad_integral::h79733d96345228a4") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 229 } Some("std::alloc::rust_oom::{{closure}}::hd75745f6cab4b1f8") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 310 } Some("wasm_bindgen::convert::closures::_::invoke::h3f1f99e1afd8da55") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 214 } Some("dlmalloc::dlmalloc::Dlmalloc::free::ha98daa4c6dd8ad86") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 121 } Some("::write_str::he0f136bfd437b8d6[1]") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 20 } Some("core::ptr::drop_in_place::h0df0d20a14497397") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 99 } Some("platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree::fix_size::he2d055e7098cad39") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 242 } Some("::write_str::he0f136bfd437b8d6[3]") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 131 } Some(" as doublets::mem::traits::LinksTree>::count_usages::he9b94df91a2a2f05") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 129 } Some("platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree::fix_size::hf2d8688412cb3d85") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 176 } Some("wasm_bindgen::__wbindgen_string_get::hb818f242dbca7203") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 87 } Some("unitedlinks_new") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 113 } Some("<&T as core::fmt::Display>::fmt::hbb01dced454bf83b") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 270 } Some("core::fmt::Formatter::pad::h950d3375a7ef2727") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 143 } Some("::write_str::he0f136bfd437b8d6[2]") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 127 } Some(" as platform_mem::raw_mem::RawMem>::grow::h10687c153cd61348") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 260 } Some("::write_str::he0f136bfd437b8d6[4]") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 103 } Some("alloc::rc::Rc::drop_slow::h28fe4489b19b1894") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 296 } Some("::write_char::hf6357790f0441c1f") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 89 } Some("doublets_web::UnitedLinks::each::{{closure}}::h0edb67d5d8fe04ea") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 94 } Some("doublets::data::traits::Doublets::count_by::h734e0195a1723b38") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 203 } Some("<&T as core::fmt::Debug>::fmt::he4dd2abd6b9f5107") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 234 } Some("std::panicking::panic_count::increase::h540a4f946b6e7ad5") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 282 } Some("::write_str::hca0c70a1f76e04ee") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 276 } Some("core::fmt::num::imp::::fmt::hb24e64dd627b0762") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 92 } Some("doublets::mem::unit::store::Store::with_constants::h8405578e21b88279") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 76 } Some("linksconstants_clone") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 77 } Some("linksconstants_full_new") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 86 } Some("unitedlinks_each") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 102 } Some(" as doublets::mem::traits::LinksTree>::attach::ha3c89ac5697b8fdc") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 81 } Some("linksconstants_via_ranges") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 216 } Some("dlmalloc::dlmalloc::Dlmalloc::unlink_chunk::h16ef10954c05020c") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 97 } Some("doublets::data::traits::Doublets::update_by::h67f311c10e7be289") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 175 } Some("wasm_bindgen::__wbindgen_number_get::hdbc650cafd48accf") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 75 } Some("link_new") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 132 } Some(" as doublets::mem::traits::LinksTree>::attach::h8659e7602bb7e0f2") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 288 } Some("core::str::count::do_count_chars::ha059beff1dcfd22f") +[2026-05-01T09:08:21Z DEBUG walrus::module::functions] emit function Id { idx: 215 } Some("__rustc[16f1505adc47261a]::__rdl_realloc") +[2026-05-01T09:08:21Z DEBUG walrus::module::data] emit data section +[2026-05-01T09:08:21Z DEBUG walrus::module] emit name section +[2026-05-01T09:08:21Z DEBUG walrus::module::producers] emit producers section +[2026-05-01T09:08:21Z DEBUG walrus::module] skipping DWARF custom section +[2026-05-01T09:08:21Z DEBUG walrus::module] emitting custom section target_features +[2026-05-01T09:08:21Z DEBUG walrus::module] emission finished +[INFO wasm_pack::command::build] wasm bindings were built at "/tmp/gh-issue-solver-1777626107940/pkg". +[INFO wasm_pack::command::build] executing wasm-opt with ["-O"] +[DEBUG ureq::stream] connecting to github.com:443 at 140.82.121.4:443 +[DEBUG rustls::client::hs] Resuming session +[DEBUG rustls::client::hs] Using ciphersuite TLS13_AES_128_GCM_SHA256 +[DEBUG rustls::client::tls13] Not resuming +[DEBUG rustls::client::tls13] TLS1.3 encrypted extensions: ServerExtensions { server_name_ack: (), unknown_extensions: {}, .. } +[DEBUG rustls::client::hs] ALPN protocol is None +[DEBUG ureq::stream] created stream: Stream(RustlsStream) +[DEBUG ureq::unit] sending request GET https://github.com/WebAssembly/binaryen/releases/download/version_117/binaryen-version_117-x86_64-linux.tar.gz +[DEBUG ureq::unit] writing prelude: GET /WebAssembly/binaryen/releases/download/version_117/binaryen-version_117-x86_64-linux.tar.gz HTTP/1.1 + Host: github.com + User-Agent: ureq/2.12.1 + Accept: */* + accept-encoding: gzip +[DEBUG ureq::response] zero-length body returning stream directly to pool +[DEBUG ureq::pool] adding stream to pool: https|github.com|443 -> Stream(RustlsStream) +[DEBUG ureq::unit] response 302 to GET https://github.com/WebAssembly/binaryen/releases/download/version_117/binaryen-version_117-x86_64-linux.tar.gz +[DEBUG ureq::unit] redirect 302 https://github.com/WebAssembly/binaryen/releases/download/version_117/binaryen-version_117-x86_64-linux.tar.gz -> https://release-assets.githubusercontent.com/github-production-release-asset/45208608/1d962587-f62b-44e0-92b1-8b7ffa68745f?sp=r&sv=2018-11-09&sr=b&spr=https&se=2026-05-01T10%3A08%3A25Z&rscd=attachment%3B+filename%3Dbinaryen-version_117-x86_64-linux.tar.gz&rsct=application%2Foctet-stream&skoid=96c2d410-5711-43a1-aedd-ab1947aa7ab0&sktid=398a6654-997b-47e9-b12b-9515b896b4de&skt=2026-05-01T09%3A08%3A13Z&ske=2026-05-01T10%3A08%3A25Z&sks=b&skv=2018-11-09&sig=7tLYNoeccLwTCJz7Ieimh5ufizty9O9%2Ba9Lc8VeW2l0%3D&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmVsZWFzZS1hc3NldHMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIiwia2V5Ijoia2V5MSIsImV4cCI6MTc3NzYyODMwMSwibmJmIjoxNzc3NjI2NTAxLCJwYXRoIjoicmVsZWFzZWFzc2V0cHJvZHVjdGlvbi5ibG9iLmNvcmUud2luZG93cy5uZXQifQ.EJpmgWBYLlsUAhNfTuuMpK-WUxnEvLNGIKG67VUFjPI&response-content-disposition=attachment%3B%20filename%3Dbinaryen-version_117-x86_64-linux.tar.gz&response-content-type=application%2Foctet-stream +[DEBUG ureq::stream] connecting to release-assets.githubusercontent.com:443 at 185.199.110.133:443 +[DEBUG rustls::client::hs] Resuming session +[DEBUG rustls::client::hs] Using ciphersuite TLS13_AES_128_GCM_SHA256 +[DEBUG rustls::client::tls13] Resuming using PSK +[DEBUG rustls::client::tls13] TLS1.3 encrypted extensions: ServerExtensions { server_name_ack: (), unknown_extensions: {}, .. } +[DEBUG rustls::client::hs] ALPN protocol is None +[DEBUG ureq::stream] created stream: Stream(RustlsStream) +[DEBUG ureq::unit] sending request GET https://release-assets.githubusercontent.com/github-production-release-asset/45208608/1d962587-f62b-44e0-92b1-8b7ffa68745f?sp=r&sv=2018-11-09&sr=b&spr=https&se=2026-05-01T10%3A08%3A25Z&rscd=attachment%3B+filename%3Dbinaryen-version_117-x86_64-linux.tar.gz&rsct=application%2Foctet-stream&skoid=96c2d410-5711-43a1-aedd-ab1947aa7ab0&sktid=398a6654-997b-47e9-b12b-9515b896b4de&skt=2026-05-01T09%3A08%3A13Z&ske=2026-05-01T10%3A08%3A25Z&sks=b&skv=2018-11-09&sig=7tLYNoeccLwTCJz7Ieimh5ufizty9O9%2Ba9Lc8VeW2l0%3D&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmVsZWFzZS1hc3NldHMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIiwia2V5Ijoia2V5MSIsImV4cCI6MTc3NzYyODMwMSwibmJmIjoxNzc3NjI2NTAxLCJwYXRoIjoicmVsZWFzZWFzc2V0cHJvZHVjdGlvbi5ibG9iLmNvcmUud2luZG93cy5uZXQifQ.EJpmgWBYLlsUAhNfTuuMpK-WUxnEvLNGIKG67VUFjPI&response-content-disposition=attachment%3B%20filename%3Dbinaryen-version_117-x86_64-linux.tar.gz&response-content-type=application%2Foctet-stream +[DEBUG ureq::unit] writing prelude: GET /github-production-release-asset/45208608/1d962587-f62b-44e0-92b1-8b7ffa68745f?sp=r&sv=2018-11-09&sr=b&spr=https&se=2026-05-01T10%3A08%3A25Z&rscd=attachment%3B+filename%3Dbinaryen-version_117-x86_64-linux.tar.gz&rsct=application%2Foctet-stream&skoid=96c2d410-5711-43a1-aedd-ab1947aa7ab0&sktid=398a6654-997b-47e9-b12b-9515b896b4de&skt=2026-05-01T09%3A08%3A13Z&ske=2026-05-01T10%3A08%3A25Z&sks=b&skv=2018-11-09&sig=7tLYNoeccLwTCJz7Ieimh5ufizty9O9%2Ba9Lc8VeW2l0%3D&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmVsZWFzZS1hc3NldHMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIiwia2V5Ijoia2V5MSIsImV4cCI6MTc3NzYyODMwMSwibmJmIjoxNzc3NjI2NTAxLCJwYXRoIjoicmVsZWFzZWFzc2V0cHJvZHVjdGlvbi5ibG9iLmNvcmUud2luZG93cy5uZXQifQ.EJpmgWBYLlsUAhNfTuuMpK-WUxnEvLNGIKG67VUFjPI&response-content-disposition=attachment%3B%20filename%3Dbinaryen-version_117-x86_64-linux.tar.gz&response-content-type=application%2Foctet-stream HTTP/1.1 + Host: release-assets.githubusercontent.com + User-Agent: ureq/2.12.1 + Accept: */* + accept-encoding: gzip +[DEBUG ureq::response] Streaming body until content-length: 91090107 +[DEBUG ureq::unit] response 200 to GET https://release-assets.githubusercontent.com/github-production-release-asset/45208608/1d962587-f62b-44e0-92b1-8b7ffa68745f?sp=r&sv=2018-11-09&sr=b&spr=https&se=2026-05-01T10%3A08%3A25Z&rscd=attachment%3B+filename%3Dbinaryen-version_117-x86_64-linux.tar.gz&rsct=application%2Foctet-stream&skoid=96c2d410-5711-43a1-aedd-ab1947aa7ab0&sktid=398a6654-997b-47e9-b12b-9515b896b4de&skt=2026-05-01T09%3A08%3A13Z&ske=2026-05-01T10%3A08%3A25Z&sks=b&skv=2018-11-09&sig=7tLYNoeccLwTCJz7Ieimh5ufizty9O9%2Ba9Lc8VeW2l0%3D&jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmVsZWFzZS1hc3NldHMuZ2l0aHVidXNlcmNvbnRlbnQuY29tIiwia2V5Ijoia2V5MSIsImV4cCI6MTc3NzYyODMwMSwibmJmIjoxNzc3NjI2NTAxLCJwYXRoIjoicmVsZWFzZWFzc2V0cHJvZHVjdGlvbi5ibG9iLmNvcmUud2luZG93cy5uZXQifQ.EJpmgWBYLlsUAhNfTuuMpK-WUxnEvLNGIKG67VUFjPI&response-content-disposition=attachment%3B%20filename%3Dbinaryen-version_117-x86_64-linux.tar.gz&response-content-type=application%2Foctet-stream +[DEBUG ureq::stream] dropping stream: Stream(RustlsStream) +[DEBUG ureq::stream] dropping stream: Stream(RustlsStream) +[INFO]: Optimizing wasm binaries with `wasm-opt`... +[INFO wasm_pack::child] Running "/home/box/.cache/.wasm-pack/wasm-opt-1ceaaea8b7b5f7e0/bin/wasm-opt" "/tmp/gh-issue-solver-1777626107940/pkg/doublets_web_bg.wasm" "-o" "/tmp/gh-issue-solver-1777626107940/pkg/doublets_web_bg.wasm-opt.wasm" "-O" +[INFO wasm_pack::command::build] Wrote a package.json at "/tmp/gh-issue-solver-1777626107940/pkg/package.json". +[INFO wasm_pack::command::build] Copying readme from crate... +[INFO wasm_pack::command::build] Copied readme from crate to "/tmp/gh-issue-solver-1777626107940/pkg". +[INFO wasm_pack::command::build] Copying license from crate... +[INFO wasm_pack::command::build] Copied license from crate to "/tmp/gh-issue-solver-1777626107940/pkg". +[INFO wasm_pack::command::build] Done in 21.14s. +[INFO wasm_pack::command::build] Your wasm pkg is ready to publish at /tmp/gh-issue-solver-1777626107940/pkg. +[INFO]: ✨ Done in 21.14s +[INFO]: 📦 Your wasm pkg is ready to publish at /tmp/gh-issue-solver-1777626107940/pkg. diff --git a/docs/case-studies/issue-7/logs/wasm-pack-test-node.log b/docs/case-studies/issue-7/logs/wasm-pack-test-node.log new file mode 100644 index 0000000..986ddcf --- /dev/null +++ b/docs/case-studies/issue-7/logs/wasm-pack-test-node.log @@ -0,0 +1,4585 @@ +[INFO wasm_pack::command] Running test command... +[INFO wasm_pack::command::test] Checking rustc version... +[INFO wasm_pack::command::test] Rustc version is correct. +[INFO wasm_pack::command::test] Adding wasm-target... +[INFO]: 🎯 Checking for the Wasm target... +[INFO wasm_pack::build::wasm_target] Found wasm32-unknown-unknown in "/home/box/.rustup/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/wasm32-unknown-unknown/lib" +[INFO wasm_pack::command::test] Adding wasm-target was successful. +[INFO wasm_pack::command::test] Compiling tests to wasm... +[INFO wasm_pack::child] Running cd "/tmp/gh-issue-solver-1777626107940" && CARGO_BUILD_TARGET="wasm32-unknown-unknown" "cargo" "build" "--tests" + Compiling once_cell v1.21.4 + Compiling libm v0.2.16 + Compiling unicode-ident v1.0.24 + Compiling cfg-if v1.0.4 + Compiling futures-core v0.3.32 + Compiling slab v0.4.12 + Compiling futures-task v0.3.32 + Compiling wasm-bindgen-shared v0.2.120 + Compiling pin-project-lite v0.2.17 + Compiling thiserror v2.0.18 + Compiling fastrand v2.4.1 + Compiling futures-util v0.3.32 + Compiling serde_core v1.0.228 + Compiling memmap2 v0.9.10 + Compiling wasm-bindgen v0.2.120 + Compiling tempfile v3.27.0 + Compiling allocator-api2 v0.4.0 + Compiling beef v0.5.2 + Compiling platform-mem v0.3.0 + Compiling zmij v1.0.21 + Compiling num-traits v0.2.19 + Compiling itoa v1.0.18 + Compiling memchr v2.8.0 + Compiling platform-num v0.8.0 + Compiling leak_slice v0.2.0 + Compiling platform-trees v0.3.4 + Compiling platform-data v2.0.0 + Compiling tap v1.0.1 + Compiling doublets v0.3.0 + Compiling console_error_panic_hook v0.1.7 + Compiling oorandom v11.1.5 + Compiling cast v0.3.0 + Compiling js-sys v0.3.97 + Compiling wasm-bindgen-test-shared v0.2.120 + Compiling nu-ansi-term v0.50.3 + Compiling serde v1.0.228 + Compiling serde_json v1.0.149 + Compiling wasm-bindgen-futures v0.4.70 + Compiling wasm-bindgen-test v0.3.70 + Compiling doublets-web v0.1.2 (/tmp/gh-issue-solver-1777626107940) + Finished `dev` profile [unoptimized + debuginfo] target(s) in 11.06s +[INFO wasm_pack::command::test] Finished compiling tests to wasm. +[INFO wasm_pack::command::test] Identifying wasm-bindgen dependency... +[INFO]: ⬇️ Installing wasm-bindgen... +[INFO wasm_pack::command::test] Getting wasm-bindgen-cli was successful. +[INFO wasm_pack::command::test] Running tests in node... +[INFO wasm_pack::child] Running cd "/tmp/gh-issue-solver-1777626107940" && CARGO_TARGET_WASM32_UNKNOWN_UNKNOWN_RUNNER="/home/box/.cache/.wasm-pack/wasm-bindgen-6100c0c263093c56/wasm-bindgen-test-runner" WASM_BINDGEN_TEST_ONLY_NODE="1" "cargo" "test" "--target" "wasm32-unknown-unknown" + Finished `test` profile [unoptimized + debuginfo] target(s) in 0.05s + Running unittests src/lib.rs (target/wasm32-unknown-unknown/debug/deps/doublets_web-cd7a40babe59aa64.wasm) +[2026-05-01T09:08:43Z DEBUG walrus::module::types] parsing type section +[2026-05-01T09:08:43Z DEBUG walrus::module::imports] parse import section +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] parse function section +[2026-05-01T09:08:43Z DEBUG walrus::module::tables] parse table section +[2026-05-01T09:08:43Z DEBUG walrus::module::memories] parse memory section +[2026-05-01T09:08:43Z DEBUG walrus::module::globals] parse global section +[2026-05-01T09:08:43Z DEBUG walrus::module::exports] parse export section +[2026-05-01T09:08:43Z DEBUG walrus::module::elements] parse element section +[2026-05-01T09:08:43Z DEBUG walrus::module::data] parse data section +[2026-05-01T09:08:43Z DEBUG walrus::module] parsing custom section `.debug_abbrev` +[2026-05-01T09:08:43Z DEBUG walrus::module] parsing custom section `.debug_info` +[2026-05-01T09:08:43Z DEBUG walrus::module] parsing custom section `.debug_ranges` +[2026-05-01T09:08:43Z DEBUG walrus::module] parsing custom section `.debug_str` +[2026-05-01T09:08:43Z DEBUG walrus::module] parsing custom section `.debug_line` +[2026-05-01T09:08:43Z DEBUG walrus::module] parsing custom section `__wasm_bindgen_unstable` +[2026-05-01T09:08:43Z DEBUG walrus::module] parsing custom section `.debug_loc` +[2026-05-01T09:08:43Z DEBUG walrus::module] parse name section +[2026-05-01T09:08:43Z DEBUG walrus::module::producers] parse producers section +[2026-05-01T09:08:43Z DEBUG walrus::module] parsing custom section `target_features` +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] parse code section +[2026-05-01T09:08:43Z DEBUG walrus::module] parse complete +no tests to run! + Running tests/license_metadata.rs (target/wasm32-unknown-unknown/debug/deps/license_metadata-e757d63292abad30.wasm) +[2026-05-01T09:08:43Z DEBUG walrus::module::types] parsing type section +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] parse function section +[2026-05-01T09:08:43Z DEBUG walrus::module::tables] parse table section +[2026-05-01T09:08:43Z DEBUG walrus::module::memories] parse memory section +[2026-05-01T09:08:43Z DEBUG walrus::module::globals] parse global section +[2026-05-01T09:08:43Z DEBUG walrus::module::exports] parse export section +[2026-05-01T09:08:43Z DEBUG walrus::module::elements] parse element section +[2026-05-01T09:08:43Z DEBUG walrus::module::data] parse data section +[2026-05-01T09:08:43Z DEBUG walrus::module] parsing custom section `.debug_abbrev` +[2026-05-01T09:08:43Z DEBUG walrus::module] parsing custom section `.debug_info` +[2026-05-01T09:08:43Z DEBUG walrus::module] parsing custom section `.debug_ranges` +[2026-05-01T09:08:43Z DEBUG walrus::module] parsing custom section `.debug_str` +[2026-05-01T09:08:43Z DEBUG walrus::module] parsing custom section `.debug_line` +[2026-05-01T09:08:43Z DEBUG walrus::module] parsing custom section `.debug_loc` +[2026-05-01T09:08:43Z DEBUG walrus::module] parse name section +[2026-05-01T09:08:43Z DEBUG walrus::module::producers] parse producers section +[2026-05-01T09:08:43Z DEBUG walrus::module] parsing custom section `target_features` +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] parse code section +[2026-05-01T09:08:43Z DEBUG walrus::module] parse complete +no tests to run! + Running tests/web.rs (target/wasm32-unknown-unknown/debug/deps/web-a038d00c34a97d08.wasm) +[2026-05-01T09:08:43Z DEBUG walrus::module::types] parsing type section +[2026-05-01T09:08:43Z DEBUG walrus::module::imports] parse import section +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] parse function section +[2026-05-01T09:08:43Z DEBUG walrus::module::tables] parse table section +[2026-05-01T09:08:43Z DEBUG walrus::module::memories] parse memory section +[2026-05-01T09:08:43Z DEBUG walrus::module::globals] parse global section +[2026-05-01T09:08:43Z DEBUG walrus::module::exports] parse export section +[2026-05-01T09:08:43Z DEBUG walrus::module::elements] parse element section +[2026-05-01T09:08:43Z DEBUG walrus::module::data] parse data section +[2026-05-01T09:08:43Z DEBUG walrus::module] parsing custom section `.debug_abbrev` +[2026-05-01T09:08:43Z DEBUG walrus::module] parsing custom section `.debug_info` +[2026-05-01T09:08:43Z DEBUG walrus::module] parsing custom section `.debug_str` +[2026-05-01T09:08:43Z DEBUG walrus::module] parsing custom section `.debug_line` +[2026-05-01T09:08:43Z DEBUG walrus::module] parsing custom section `.debug_ranges` +[2026-05-01T09:08:43Z DEBUG walrus::module] parsing custom section `.debug_loc` +[2026-05-01T09:08:43Z DEBUG walrus::module] parsing custom section `__wasm_bindgen_unstable` +[2026-05-01T09:08:43Z DEBUG walrus::module] parse name section +[2026-05-01T09:08:43Z DEBUG walrus::module::producers] parse producers section +[2026-05-01T09:08:43Z DEBUG walrus::module] parsing custom section `target_features` +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] parse code section +[2026-05-01T09:08:43Z DEBUG walrus::module] parse complete +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] custom section '__wasm_bindgen_unstable' looks like a Wasm bindgen section +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 81 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 91 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 81 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 73 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 79 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 99 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 86 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 104 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 109 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 99 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 71 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 75 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 117 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 39 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 39 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 77 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 84 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 233 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 39 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 69 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 87 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 302 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 290 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 690 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 457 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 78 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 86 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 351 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 161 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 566 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 172 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 154 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 144 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 228 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 142 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 518 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 44 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 125 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 356 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 142 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 144 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 134 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 151 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 227 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 287 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 462 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2130 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1689 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2146 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 385 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 858 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1427 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 163 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2107 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2153 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 375 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2107 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 231 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2199 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1380 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 943 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 4053 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1055 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 329 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 378 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 765 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 547 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 8068 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 160 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 509 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 91 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 163 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 228 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2268 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 162 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2107 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 166 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2266 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 737 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 5224 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1906 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1458 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1856 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2176 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 169 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1406 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 367 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 395 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 8288 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 3356 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1902 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2084 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2153 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2130 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 364 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 262 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1064 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 178 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 251 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 5910 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 324 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 182 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 127 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 374 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 340 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 123 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1266 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 122 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 803 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1135 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 238 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 819 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 96 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 183 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 130 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 109 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1368 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 208 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 375 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1107 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 229 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 155 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 168 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 138 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 115 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 244 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 450 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 640 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 267 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 274 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 122 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1491 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 645 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 122 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 107 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 304 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 3224 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 114 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 280 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 110 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 138 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 394 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 400 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 109 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1350 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 238 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 127 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 121 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 126 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 232 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 403 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 111 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 275 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 108 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 136 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 272 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 288 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 182 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 840 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 212 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 107 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 5794 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 374 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 145 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 758 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 127 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 122 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 117 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 122 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 130 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 115 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 885 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1412 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 270 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 384 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 131 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 593 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 118 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1985 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 106 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 156 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1959 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 5686 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 363 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 170 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 129 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 314 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 365 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 4510 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 218 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 110 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 229 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 3209 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 253 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 2273 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 3224 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 272 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 633 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 198 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 482 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 294 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 178 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 1119 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 198 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 988 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 516 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 367 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 189 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 396 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 89 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 97 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 99 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 186 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 490 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found version specifier {"schema_version":"0.2.119","version":"0.2.120"} +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support::wit] found a program of length 5603 +[2026-05-01T09:08:43Z DEBUG wasm_bindgen_cli_support] Exception handling version: None +[2026-05-01T09:08:43Z DEBUG walrus::passes::used] starting to calculate used set +[2026-05-01T09:08:43Z DEBUG walrus::passes::used] starting to calculate used set +[2026-05-01T09:08:43Z DEBUG walrus::module] start emit +[2026-05-01T09:08:43Z DEBUG walrus::module::types] emitting type section +[2026-05-01T09:08:43Z DEBUG walrus::module::imports] emit import section +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function section +[2026-05-01T09:08:43Z DEBUG walrus::module::tables] emit table section +[2026-05-01T09:08:43Z DEBUG walrus::module::memories] emit memory section +[2026-05-01T09:08:43Z DEBUG walrus::module::tags] emit tag section +[2026-05-01T09:08:43Z DEBUG walrus::module::globals] emit global section +[2026-05-01T09:08:43Z DEBUG walrus::module::exports] emit export section +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit code section +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 346 } Some("test::console::run_tests_console::h1f6f4855952edecf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 780 } Some(" as core::ops::try_trait::Try>::branch::h2b8dee266202a25e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2839 } Some("alloc::vec::Vec::clear::h6bf2a8204debcdcf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 984 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h618e2747816b76b2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 869 } Some("doublets::mem::unit::store::Store::mut_from_mem::h54e05b7405453df0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 986 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h89155df782b89e67") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5224 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::hff46b4ac8a49a479") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1312 } Some(" as core::ops::drop::Drop>::drop::h3c428323317e8c64") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5373 } Some(" as core::clone::Clone>::clone::hb5d43ecf1c101bc0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2236 } Some(" as core::ops::drop::Drop>::drop::h84976f238e9c1de1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2293 } Some(" as core::ops::drop::Drop>::drop::hb45ebe564bf49d60") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2631 } Some("alloc::raw_vec::RawVecInner::shrink::ha2d3d10772f4d8c5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4809 } Some(" as core::ops::function::FnOnce<()>>::call_once::h7a18f88a531d263b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2853 } Some("core::cmp::Ord::min::hfa49d868ee3e61e4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2990 } Some(" as core::ops::drop::Drop>::drop::h6ba91b2e55f22498") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4815 } Some(" as core::ops::function::FnOnce<()>>::call_once::h8a4d415fe24c619f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4742 } Some(" as core::ops::drop::Drop>::drop::hd1e9eab336449856") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2889 } Some(" as core::ops::range::RangeBounds>::end_bound::he043b11c1a7b456f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4818 } Some(" as core::ops::function::FnOnce<()>>::call_once::hb7e8f9771eb0f486") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5527 } Some("alloc::raw_vec::RawVecInner::shrink::h3a3e18a73b5ee9d0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4896 } Some("::deallocate::h62d4a9d01f08fa83") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2901 } Some("::mul::h0f65bd9aed5ab77d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5604 } Some(" as core::ops::drop::Drop>::drop::haae83fe770419878") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4916 } Some("core::ptr::drop_in_place>::h9086282250dbb43f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4642 } Some("core::cell::RefCell::new::h0c2b55bb1656fc99") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5237 } Some("alloc::vec::Vec::with_capacity::h31cb0ac4fca15612") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5861 } Some("::drop::h07612425265377c9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4687 } Some("js_sys::futures::task::singlethread::Task::wake::h1ed0a8104f9e2f19") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 988 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::hb403e04a48da9c99") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4898 } Some("core::ops::function::FnOnce::call_once::h2bc67ae5419b30bb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5561 } Some("wasm_bindgen::__wbindgen_is_function::h6d2e0437b82713d4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1169 } Some("<[T] as core::fmt::Debug>::fmt::hbdc4df4b82bffda9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5577 } Some("core::cmp::Ord::max::hb26a5fa7929017c3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5563 } Some("wasm_bindgen::__wbindgen_is_undefined::h7c8914dc5c2f14a5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5726 } Some("::allocate::h88b316f677970186") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1387 } Some("serde_json::de::Deserializer::peek_error::h5400b8aa4b0db9c6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 110 } Some("core::str::traits:: for core::ops::range::Range>::get_unchecked::precondition_check::h22bdfabb3a1bdc19") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5730 } Some("::allocate_zeroed::h6c2c7020be91e35b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5238 } Some("alloc::vec::Vec::with_capacity::hfca254f5c3c82e67") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5498 } Some("core::ptr::drop_in_place>::haa6667db94299a7d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5899 } Some("::clone::hf40c2608d3982c00") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1390 } Some("serde_json::de::Deserializer::error::hff15e071332a188d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 60 } Some("core::ptr::alignment::Alignment::new_unchecked::precondition_check::h3a9090fad43003b8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 65 } Some("wasm_bindgen_test::__rt::Context::execute_sync::hfbd6483ccef2d9d1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 124 } Some("alloc::str::::to_owned::h2e57e21c276ddf74") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 438 } Some("core::option::Option::map_or_else::h59b26e5de96f2622") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 327 } Some("test::__rust_begin_short_backtrace::hc650a694ab78e87f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1505 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::visit_map::h231e599957e5018e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1254 } Some("core::option::Option::unwrap_or_else::hd0808371a9f5350e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 690 } Some("platform_mem::raw_mem::uninit::assume_init_mut::h229d844835f08d5a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 692 } Some("core::ptr::alignment::Alignment::new_unchecked::precondition_check::h1d0933bde7150e1c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1031 } Some("core::ptr::drop_in_place>::h4efb783d03236c26") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1904 } Some("core::option::Option::unwrap_or_else::hb107cfbbdd787309") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5524 } Some("::deallocate::h051f6fbba048f72b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1650 } Some(" as core::ops::try_trait::Try>::branch::h3f1e325e015dbe8d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1309 } Some("core::ptr::alignment::Alignment::new_unchecked::precondition_check::h6a5e9011640c5323") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5724 } Some("::deallocate::hd51dcedbf7f82a18") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5746 } Some("__rustc[16f1505adc47261a]::__rdl_alloc_zeroed") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1539 } Some("alloc::collections::btree::node::InternalNode::new::h1e6a7ca2936959c5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1833 } Some("wasm_bindgen::__rt::WasmRefCell::borrow::hf49fece00cfa0ab3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5789 } Some("std::sys::backtrace::lock::h8739f9a00d09919e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1554 } Some("alloc::collections::btree::node::LeafNode::new::h8345f9b5e9f348c3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 274 } Some("core::ptr::drop_in_place::h1cdb3afa59d53a8a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1640 } Some("<&alloc::string::String as core::str::pattern::Pattern>::is_contained_in::h9fe79f79da479159") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5865 } Some(" as core::fmt::Write>::write_str::hfb4205cc4334d209") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5889 } Some("::write_str::he0f136bfd437b8d6[2]") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1641 } Some(">::from::h6d445fd3aaf414ad") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 529 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hb8a0200702a17b11") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 226 } Some(" as test::formatters::OutputFormatter>::write_test_start::h96993bd2833e479c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1796 } Some("core::ptr::alignment::Alignment::new_unchecked::precondition_check::h5b01f323370b18d0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 227 } Some(" as test::formatters::OutputFormatter>::write_test_start::hc768356d4b2b9e8f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1907 } Some("core::option::Option::take::h57f2843a941b3421") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 834 } Some(" as doublets::mem::unit::generic::links_recursionless_size_balanced_tree_base::LinkRecursionlessSizeBalancedTreeBaseAbstract>::get_mut_link::h1258ffa3980c2850") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 591 } Some("::ref_from_abi::h565aa5acd0b3a42b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2347 } Some(" as core::convert::From>::from::h8c580bad378760e1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2468 } Some("wasm_bindgen_test::__rt::Timer::new::hc0873dff6288499a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 594 } Some("::ref_from_abi::h3eac9a407f7dba5b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 595 } Some("::ref_mut_from_abi::h28526aff36c012b2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2516 } Some("__wbgtest_console_debug") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1114 } Some("alloc::rc::Rc::drop_slow::hd253b417b77fb3cc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2517 } Some("__wbgtest_console_error") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1487 } Some("::deserialize::__FieldVisitor as serde_core::de::Visitor>::visit_str::hb3c644d8d5a95727") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 835 } Some(" as doublets::mem::unit::generic::links_recursionless_size_balanced_tree_base::LinkRecursionlessSizeBalancedTreeBaseAbstract>::get_link::h4d04393c84352b1c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1844 } Some("wasm_bindgen::__rt::WasmRefCell::borrow_mut::hb334ce2368079390") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2518 } Some("__wbgtest_console_info") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2519 } Some("__wbgtest_console_log") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2379 } Some("wasm_bindgen_test::__rt::detect::This::self_::hd99e0ef06195e26f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1115 } Some("alloc::rc::Rc::drop_slow::hdeadfd35aa7064f0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2520 } Some("__wbgtest_console_warn") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1117 } Some("alloc::rc::Rc::drop_slow::hf69c6d2f5ead61a6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1489 } Some("::deserialize::__FieldVisitor as serde_core::de::Visitor>::visit_str::h155992afcc4eb6b9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2582 } Some("core::ptr::alignment::Alignment::new_unchecked::precondition_check::h4496d2e848d74bfc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1586 } Some(" as serde_core::de::Deserializer>::deserialize_enum::h711e793e289ec142") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1540 } Some("alloc::collections::btree::node::NodeRef::from_new_internal::hae0c721c436a59df") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2756 } Some("core::ptr::alignment::Alignment::new_unchecked::precondition_check::hb11e0bd273c0aaf1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1679 } Some("::deserialize::__FieldVisitor as serde_core::de::Visitor>::visit_str::h469a5a2127e836a1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2764 } Some("alloc::str::::to_owned::h8728217f6de371c3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 881 } Some("doublets::data::traits::Doublets::create_by_with::h2f3c2244fa6ff038") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 962 } Some(" as doublets::mem::unit::generic::links_recursionless_size_balanced_tree_base::LinkRecursionlessSizeBalancedTreeBaseAbstract>::get_link::h586bd30e51a0748d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2885 } Some("memchr::memchr::memrchr::{{closure}}::h0af96a40f1c94e2d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2110 } Some("once_cell::unsync::OnceCell::set::hc64b9927e04a9752") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5284 } Some("once_cell::unsync::OnceCell::set::h3ba4c49e6c19b3b9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2381 } Some("wasm_bindgen_test::__rt::detect::Scope::deno::hb298290e765b2e92") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 322 } Some("test::cli::parse_opts::h904f3ae4183bc533") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2545 } Some("core::option::Option::unwrap_or::h17888839a55b4843") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5937 } Some("core::fmt::num::::fmt::h83dd385c2b709d70") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 196 } Some("alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle::h4af1f9c88b4a6f27") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 966 } Some(" as doublets::mem::unit::generic::links_recursionless_size_balanced_tree_base::LinkRecursionlessSizeBalancedTreeBaseAbstract>::get_mut_link::he7e65a1caf5e2ea5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2706 } Some("core::array:: for [T; N]>::try_from::h2b833516bf7a3a32") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 381 } Some("alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle::h58ac18c4ece19a8a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 976 } Some("<[T] as beef::traits::internal::Beef>::ref_into_parts::h67ca099c9d93b50d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2866 } Some(" as core::iter::range::RangeIteratorImpl>::spec_next_back::h8f03e5b0aeabf178") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2937 } Some("zmij::write_if::h43919d0a10f6c490") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1589 } Some(" as serde_core::de::Deserializer>::deserialize_struct::h2a47b4d5140640cf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2991 } Some("core::ptr::alignment::Alignment::new_unchecked::precondition_check::ha9ff67c8ed197562") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1590 } Some(" as serde_core::de::Deserializer>::deserialize_struct::h947edb9fd61846e8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3216 } Some("js_sys::global::get_global_object::GLOBAL_THIS::init::h5ad5fec3a2278037") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1591 } Some(" as serde_core::de::Deserializer>::deserialize_struct::hc5e7ea35734fed89") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1179 } Some("doublets::mem::unit::generic::unused_links::UnusedLinks::get_link::hea03b6a06428bbab") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1521 } Some("js_sys::futures::spawn_local::h3db6cac3164ac8a6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1181 } Some("doublets::mem::unit::generic::unused_links::UnusedLinks::get_mut_link::h935b9dab4bd59687") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3221 } Some("js_sys::global::get_global_object::SELF::init::hf11657a190c20547") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1485 } Some("<&alloc::vec::Vec as core::iter::traits::collect::IntoIterator>::into_iter::h2eef947b00f58d18") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1526 } Some("::peek::h8f4d3e5284e4c4e6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3222 } Some("js_sys::global::get_global_object::GLOBAL::init::h0ba28b33d281d3ac") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5184 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h2946796e749d16e4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1592 } Some(" as serde_core::de::Deserializer>::deserialize_struct::hecbdcc9e02baa0a8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1920 } Some("core::option::Option::as_deref::h048e4bc8627a2a58") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5893 } Some("alloc::raw_vec::RawVecInner::finish_grow::h3f58234d4b0bf44e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2597 } Some("alloc::vec::Vec::append_elements::hf426416515b70e51") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5931 } Some("core::fmt::num::::fmt::ha732d4e58d578f99") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3223 } Some("js_sys::global::get_global_object::WINDOW::init::he3d82c6f627f8a65") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2599 } Some("alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle::hb4261fef0e96f8da") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1849 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h4dfc689d4a03c8ac") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4515 } Some("wasm_bindgen::JsThreadLocal::with::h1bd831d31b432bb4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5947 } Some("core::num::flt2dec::strategy::dragon::format_shortest::h4c66a46b964fa2fa") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2632 } Some("alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle::h971090bcafa2e2dd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4674 } Some("js_sys::futures::task::singlethread::CREATE_TASK::init::h090fa4949a3325b4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4959 } Some("core::ptr::alignment::Alignment::new_unchecked::precondition_check::hc32c17347a0f4a1a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2722 } Some("::peek::h32fc77c178551d72") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1707 } Some("core::mem::transmute_copy::h07dd114931189f50") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5932 } Some("core::fmt::num::::fmt::h9e0bbeff346e659b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2810 } Some("alloc::vec::Vec::append_elements::h0f7595780ef827a7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 201 } Some("test::formatters::terse::TerseFormatter::write_plain::h027acd4b00dfe90f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1921 } Some("core::option::Option::unwrap_or::h995f422dc3100c95") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1710 } Some("core::mem::transmute_copy::hb441f6e490a47478") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5705 } Some("alloc::vec::Vec::append_elements::h8094710c88df3115") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2172 } Some(">::call_mut::hf97b4e8e5316d713") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5218 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::hd766b4b33b590e1f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 203 } Some("test::formatters::terse::TerseFormatter::write_plain::hc5b99432b10045dc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5582 } Some("core::ptr::alignment::Alignment::new_unchecked::precondition_check::h76c9d4bb4ef30ef5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5694 } Some("::spec_to_string::hfaf8cde3c29444af") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1924 } Some("zmij::Buffer::new::h51591d3429c81720") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 435 } Some("wasm_bindgen::convert::impls::>::from_abi::h55430d0131859975") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2428 } Some("::ref_mut_from_abi::h75535c25d98083b9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2173 } Some(" as core::slice::index::SliceIndex<[T]>>::get_unchecked::precondition_check::h89c5d7d4a84f568c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5700 } Some("core::ptr::alignment::Alignment::new_unchecked::precondition_check::h2b154310266c58e0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2174 } Some(" as core::slice::index::SliceIndex<[T]>>::get_unchecked_mut::precondition_check::h5724ef397854ce4d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5760 } Some("std::io::impls::>::write::h78b31b1436d0c8e6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2301 } Some("core::str::traits:: for core::ops::range::Range>::get_unchecked::precondition_check::hbeb202fd051c80e9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5732 } Some("alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle::hf2aaa185c426ffb3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 349 } Some("test::run_test::h3a9516618bd49e4e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5752 } Some("alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle::hcef08ec0cc696d81") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2429 } Some("::ref_from_abi::h255a1ecbf9cfd863") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2562 } Some("core::str::traits:: for str>::index::h5507f9f5bb6428a4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 570 } Some("doublets_web::LinksConstants::via_ranges::h5efd567899feeaef") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2621 } Some("zmij::Buffer::new::h62ff04a91b48d680") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 674 } Some("unitedlinks_count") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4786 } Some(" as core::ops::function::FnOnce<()>>::call_once::h1688da6034aa617e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1901 } Some("core::iter::traits::iterator::Iterator::fold::hb69db91b61fffd86") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2720 } Some("serde_json::read::error::h99c58e70870a4653") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4796 } Some(" as core::ops::function::FnOnce<()>>::call_once::h496eb1f0010eda35") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5774 } Some("std::io::stdio::_eprint::h164d11821d17dea7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2731 } Some("serde_json::read::error::h1df14a2fa9b68ea5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2733 } Some("serde_json::read::error::h7b59fc923444dbca") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4831 } Some(" as core::ops::function::FnOnce<()>>::call_once::hee0f4b1314d264f7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2734 } Some("serde_json::read::error::h8b92915df64a156a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4845 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h55f3afb3f840d608") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4794 } Some(" as core::ops::function::FnOnce<()>>::call_once::h472aee721bfa07a9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4897 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h3340afca20e86f08") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4798 } Some(" as core::ops::function::FnOnce<()>>::call_once::h543989f1176b560b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5297 } Some("core::mem::transmute_copy::h7d04ca0250bd70f4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4807 } Some(" as core::ops::function::FnOnce<()>>::call_once::h74588dd4bf268439") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5579 } Some("core::mem::transmute_copy::hf1e2b9bbd27e1d75") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6016 } Some("::write_char::hf6357790f0441c1f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4813 } Some(" as core::ops::function::FnOnce<()>>::call_once::h889fcdebff7ebb2b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 461 } Some("platform_data::constants::LinksConstants::via_external::h690aa571800a9849") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4816 } Some(" as core::ops::function::FnOnce<()>>::call_once::h8e66eb8b8b6430c9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 726 } Some("::add::hc5339ae3597a0582") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2587 } Some("core::str::traits:: for core::ops::range::Range>::get_unchecked::precondition_check::h64d7467811f03feb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 94 } Some("wasm_bindgen_test::__rt::scoped_tls::ScopedKey::set::had72854f9e6a3b58") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 728 } Some("::sub::h8a278dfb9e1b0fdd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2791 } Some("memchr::arch::all::memchr::One::new::hdd540d0201477510") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 253 } Some("std::thread::spawnhook::add_spawn_hook::{{closure}}::{{closure}}::hb140b1bc26a97d07") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2828 } Some("core::str::traits:: for core::ops::range::Range>::get_unchecked::precondition_check::he74de7d13bc875ce") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 753 } Some("::fmt::h2fc73fc11a05888d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2879 } Some("memchr::arch::all::memchr::One::new::hf643f72d48994f2d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 262 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::hf18bf4044a517512") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 825 } Some("platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree::fix_size::he79faa8adb97e9a1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2996 } Some("core::str::traits:: for core::ops::range::Range>::get_unchecked::precondition_check::h1392deca165a084e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 434 } Some("wasm_bindgen::convert::impls::>::from_abi::h095035ce4582db47") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 826 } Some(" as doublets::mem::traits::LinksTree>::each_usages::h80a4369c2a509bb5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4792 } Some(" as core::ops::function::FnOnce<()>>::call_once::h4104f48bc86182c3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 448 } Some("core::option::Option::ok_or::h566cab3547ce418a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 906 } Some("core::cell::RefCell::new::ha1f55f74a5742447") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4810 } Some(" as core::ops::function::FnOnce<()>>::call_once::h7c9383a6ede578e1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 776 } Some("core::result::Result::map_err::hf73a6255e1bb22d2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4834 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h0fbf6930be246f8e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4821 } Some(" as core::ops::function::FnOnce<()>>::call_once::hbeba9d224e79ac73") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4864 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hc6f55763024a0367") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 783 } Some(" as core::ops::try_trait::Try>::branch::h8793b831f738fa62") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4822 } Some(" as core::ops::function::FnOnce<()>>::call_once::hc2c8f30eec48ef10") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 888 } Some("doublets::data::traits::Doublets::update_by::h239a207b60a8782b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5898 } Some("alloc::raw_vec::RawVec::grow_one::hc8d51d460bbc6465") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4825 } Some(" as core::ops::function::FnOnce<()>>::call_once::hd90894729cfe5329") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5956 } Some("core::fmt::builders::DebugStruct::finish::h3fcc12ee0cf91939") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1144 } Some("doublets_web::LinksConstants::full_new::_::__wasm_bindgen_generated_LinksConstants_full_new::{{closure}}::h5af90cca071e1c5a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4827 } Some(" as core::ops::function::FnOnce<()>>::call_once::hd9d97de2f41e4256") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 538 } Some("wasm_bindgen::__rt::WasmRefCell::new::ha59dfcc2da7a1660") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2128 } Some(" as core::iter::traits::iterator::Iterator>::fold::heee6ba899c97ec57") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4830 } Some(" as core::ops::function::FnOnce<()>>::call_once::hecc86daa73b5a87e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5101 } Some("wasm_bindgen::convert::impls::>::return_abi::h2b87364680ef973e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 745 } Some("std::sync::once::Once::call_once::h52ca2a2607887fd7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5560 } Some("wasm_bindgen::convert::impls::>::from_abi::h233f24fccdfbeae7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5775 } Some("std::io::buffered::bufwriter::BufWriter::write_cold::hb63a6840371ab153") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 757 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h40aced7c13ca26d7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5810 } Some("std::panicking::payload_as_str::h7492cfde1abe727b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 760 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::ha52bed30f125780f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6022 } Some("__multi3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 171 } Some(" as test::formatters::OutputFormatter>::write_run_finish::hd75a40c64ac80dcb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1236 } Some(" as core::fmt::Display>::fmt::h5a321e1ca0f6f5fd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 67 } Some("wasm_bindgen_test::__rt::Context::execute_sync::{{closure}}::hda3af5ef80eae30c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1072 } Some("core::num::::checked_add::h20b4a58348096eb1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1819 } Some("serde_core::de::Error::invalid_length::h7ad92444324b42ce") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2633 } Some(" as core::cmp::PartialEq>::eq::he9d494335819f58b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1522 } Some("js_sys::futures::future_to_promise::h4a870212a5ea7ad3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1752 } Some("serde_core::ser::SerializeMap::serialize_entry::h13c57d14d6ca2140") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 801 } Some(" as platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree>::first_is_to_the_left_of_second::h208cfbe97eda6b6f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2651 } Some("core::result::Result::map::h81863ff88eafdba8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1864 } Some("wasm_bindgen::convert::impls::>::from_abi::h204df6e64e7822f9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5927 } Some("core::fmt::num::imp::::fmt::h5bb1559f35fa2c5d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2652 } Some("core::result::Result::map::hdf65577513dabf36") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1865 } Some("wasm_bindgen::convert::impls::>::from_abi::hf4180c1f9a09a4fb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 242 } Some("alloc::sync::Arc::drop_slow::heea1138ba413d989") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 953 } Some("platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree::fix_size::h64d44c685d5d9ae0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 802 } Some(" as platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree>::first_is_to_the_right_of_second::h0ca355928240d139") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5925 } Some("core::fmt::num::imp::::fmt::hcc4fdae794c9e627") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 954 } Some(" as doublets::mem::traits::LinksTree>::each_usages::h101911523ea41cf5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 929 } Some(" as platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree>::first_is_to_the_left_of_second::ha3fdad8ef82d19db") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 983 } Some("core::ops::function::FnOnce::call_once::h2f41fb3a4f59b0ee") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 390 } Some("getopts::Matches::opt_present::hac706da1ed474e9a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 930 } Some(" as platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree>::first_is_to_the_right_of_second::h7017b032e1318740") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1124 } Some("js_sys::_::>::ref_from_abi::ha8d21bdc0850d30d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1068 } Some("beef::generic::Cow::borrowed::heb85b55fd59b50fc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 676 } Some("unitedlinks_delete") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1264 } Some("console_error_panic_hook::Error::new::h02efe6cdd3b54614") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1870 } Some("wasm_bindgen_test::__rt::worker::WorkerError::stack::hc7c22aa414a3dc60") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2389 } Some("wasm_bindgen_test::__rt::criterion::baseline::_::__wasm_bindgen_generated___wbgbench_import::{{closure}}::h6c5ee33a268909e1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 717 } Some("platform_mem::raw_place::RawPlace::shrink_to::h4cd0e8e5e59dfb84") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1876 } Some("wasm_bindgen_test::__rt::browser::BrowserError::stack::h6dea34f35f21eeee") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5355 } Some("wasm_bindgen::convert::impls::>::from_abi::h3b569f1a1b852359") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2182 } Some("std::sync::once::Once::call_once::h750df97af21b4683") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 899 } Some("core::cell::RefCell::try_borrow_mut::h69665fac36a05838") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2380 } Some("wasm_bindgen_test::__rt::detect::Scope::constructor::hcd3525406f8230b6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 900 } Some("core::cell::RefCell::try_borrow_mut::hbaf36b69b6f3a557") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2469 } Some("wasm_bindgen_test::__rt::Global::performance::he1529972be8aa563") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1316 } Some("core::ptr::non_null::NonNull::new::hf87df36a8c0ed6c6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2618 } Some("core::option::Option::unwrap_or::h5faa5c223959a217") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 901 } Some("core::cell::RefCell::try_borrow_mut::hbbcbd6509c9e761c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1533 } Some("alloc::collections::btree::node::NodeRef::from_new_leaf::h9689adb7d386e39a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2773 } Some("::shrink::haf373d782ba84eff") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 902 } Some("core::cell::RefCell::try_borrow_mut::hf3de89e5f5de0296") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1639 } Some("::fmt::hbfc3f2c729ce4dcf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2800 } Some("memchr::memchr::memchr2::{{closure}}::he74f093d6e5495f6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1735 } Some("<&mut serde_json::ser::Serializer as serde_core::ser::Serializer>::serialize_str::h10cdcbe8feb3e199") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1723 } Some(" as serde_core::de::Visitor>::visit_none::h7798c8f8d1f17019") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2844 } Some(" as core::cmp::Ord>::cmp::h5c90049ef8c4fc1e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1803 } Some("::eq::h52a5ada84c2459a7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 363 } Some("alloc::sync::Arc::drop_slow::h57732011e069ac8f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2309 } Some("core::cell::RefCell::borrow_mut::h08b6bbfbc30a3453") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2946 } Some("zmij::digits2::hf713e656adeba8ed") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5356 } Some("wasm_bindgen::convert::impls::>::from_abi::h9b4e13764af549bb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1909 } Some("core::option::Option::as_ref::h0d30cfcae00d84b6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3214 } Some("js_sys::Error::name::h21c775ccc3557a14") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5803 } Some("<&T as core::fmt::Display>::fmt::hc31e714438bbd780") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1910 } Some("core::option::Option::as_ref::h2d981ae8a6a21a99") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3215 } Some("js_sys::Error::message::h58f3c8c65f5f0d38") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 523 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h786229f9755c08f7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4627 } Some("< as core::ops::drop::Drop>::drop::Dropper as core::ops::drop::Drop>::drop::h6ffe731744db4bb7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 581 } Some("::into_abi::hd90b0efd0f7c1aa2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 778 } Some(" as core::ops::try_trait::Try>::branch::h1244a7eb13ad0a3b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4688 } Some("js_sys::futures::task::singlethread::Task::into_raw_waker::raw_clone::h523a18d20452ac48") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 685 } Some("core::slice::iter::IterMut::new::h4c6d6364b2cfde69") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 843 } Some(" as doublets::data::traits::Links>::each_links::hc96db7f0d5523061") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1211 } Some("platform_data::query::Query::new::h4287cf9c89a962ec") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4795 } Some(" as core::ops::function::FnOnce<()>>::call_once::h493071535c82941f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5943 } Some("core::num::flt2dec::strategy::dragon::format_exact::h73bd3f6ba050fa16") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 850 } Some(" as doublets::data::traits::Doublets>::get_link::h0cfcc78c595343fa") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1483 } Some(" as core::iter::traits::collect::Extend>::extend::hbc20b2692f12baa2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4853 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h7ece9b349e0f1b94") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 882 } Some("doublets::data::traits::Doublets::delete_by_with::hc67738fb613feb41") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2085 } Some("js_sys::_::>::ref_from_abi::hf5d35e5ad0bdac1b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5004 } Some("js_sys::futures::queue::Global::hasQueueMicrotask::h3f64ac692445665a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1325 } Some(" as serde_core::de::EnumAccess>::variant_seed::hcb9bca3ffb72b243") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2136 } Some("core::str::::contains::h28872d8062e86838") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5525 } Some("::shrink::hb71bfe5dcf4d6666") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2184 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h1a7748e2d4961d56") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2242 } Some("core::ptr::drop_in_place::{{closure}}::{{closure}}>::hb245395b494c398d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5556 } Some("wasm_bindgen::__wbindgen_typeof::hf545e4643e4a1a74") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2188 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h40c77a0ff8b94546") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4804 } Some(" as core::ops::function::FnOnce<()>>::call_once::h69bda6c29cbd839d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5794 } Some("std::time::SystemTime::checked_add::h9000844e87e4e3ac") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2190 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h91cf00b96b090cf9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4814 } Some(" as core::ops::function::FnOnce<()>>::call_once::h88f67d64ba88e71f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5878 } Some("::alloc::h5d11e6618597802f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1642 } Some(" as core::ops::try_trait::Try>::branch::h009df7d87ca12b2e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4829 } Some(" as core::ops::function::FnOnce<()>>::call_once::hebf007115a1b639b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 130 } Some("core::char::convert::from_u32_unchecked::precondition_check::hf3ba642acad45392") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1643 } Some(" as core::ops::try_trait::Try>::branch::h0467acf1af77a120") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 441 } Some("core::option::Option::map::h064d397fdd52b551") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4833 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h089a4695662330cc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1651 } Some(" as core::ops::try_trait::Try>::branch::h515b22ca8c1e54bf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 442 } Some("core::option::Option::map::h3be1adcef250f0c1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1655 } Some(" as core::ops::try_trait::Try>::branch::h782422b42312740b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4835 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h124a4c70051ae58f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4839 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h3afa4365037c0d1e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1662 } Some(" as core::ops::try_trait::Try>::branch::hc7456e759ceb8fbd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 444 } Some("core::option::Option::map::h604505295b94a852") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4841 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h3d6ff04c73161afb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1664 } Some(" as core::ops::try_trait::Try>::branch::hce9e0389d08b3fa4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 852 } Some(" as doublets::data::traits::Links>::count_links::{{closure}}::hf804c8587b9a3327") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4842 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h433d19e77d5027db") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 859 } Some("doublets::data::traits::Doublets::update::he427cca397e34e0f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2125 } Some("core::slice::iter::Iter::new::h5d4b1dd7c7eb1147") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4844 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h4daee197f1b60074") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1384 } Some("serde_json::de::ParserNumber::visit::ha8364617990783ad") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2343 } Some(">::index_mut::h6cd69fb358a9ef7d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4851 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h793a539065f23e60") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1716 } Some("core::char::convert::from_u32_unchecked::precondition_check::h5d93a98d087989c7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2361 } Some("wasm_bindgen_test::__rt::node::__wbgtest_coverage_path::h38dc61afb832f3e2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1750 } Some(" as serde_core::ser::SerializeMap>::end::h1819f09ff8bcdf2e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4852 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h7c9abb04311a68ac") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2782 } Some("core::num::::unchecked_add::precondition_check::hd8325889239b850e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2194 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::hc71b9576509c1d15") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1755 } Some(" as serde_core::ser::SerializeSeq>::end::h2c97061f3d6d2f70") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4858 } Some("wasm_bindgen::__rt::maybe_catch_unwind::ha048df7e22d6f33e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2196 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::hea206302916fb847") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2310 } Some("core::cell::RefCell::borrow_mut::h93b0700c2b840dcd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1829 } Some("serde_core::ser::impls::>::serialize::hab2122b4065ba8f7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2255 } Some("core::ptr::drop_in_place::hc7e8a7e835994567") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1853 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h8904840a14fb3d8a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2311 } Some("core::cell::RefCell::borrow_mut::ha9cbc16c8954981c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2487 } Some("wasm_bindgen_test::__rt::Context::new::panic_handling::Error::new::h496b262b80572743") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1856 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h9da785b8c7e93aeb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2656 } Some("<&str as core::str::pattern::Pattern>::is_prefix_of::hc79849eea9cd4122") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2312 } Some("core::cell::RefCell::borrow_mut::hfdad5c899ec8b7ca") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2672 } Some("core::str::::starts_with::h15eb3a5975fb1a13") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2102 } Some("once_cell::unsync::OnceCell::get::hc6a13687a0e893d1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2315 } Some("core::cell::RefCell::try_borrow_mut::ha6a907b327523db0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2716 } Some("::fmt::hd992f89a439459e8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2104 } Some("once_cell::unsync::OnceCell::get::hfd95cee29a3e3068") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2868 } Some("core::slice::::split_at_unchecked::h4d0f49fc7f16d8b4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2735 } Some("serde_json::read::as_str::h8f84b2062c3431b7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4640 } Some("core::cell::RefCell::borrow_mut::h1b493d86532ac1ee") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2485 } Some("wasm_bindgen_test::__rt::Context::include_ignored::_::__wasm_bindgen_generated_WasmBindgenTestContext_include_ignored::{{closure}}::he0332721b9754f09") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2873 } Some("core::option::Option::unwrap_or::h1849431d0d441275") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2957 } Some("<::fmt::LookForDecimalPoint as core::fmt::Write>::write_str::heed0fa947e3bcc7e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4641 } Some("core::cell::RefCell::borrow_mut::hfceec234b2545ac5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2537 } Some("wasmbindgentestcontext_filtered_count") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4679 } Some("js_sys::futures::task::singlethread::try_create_task::{{closure}}::{{closure}}::h9b098a3fed56e944") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2538 } Some("wasmbindgentestcontext_include_ignored") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2877 } Some("<*const T as memchr::ext::Pointer>::distance::h80d4e45bb6c3f571") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5263 } Some("once_cell::unsync::Lazy::force::{{closure}}::h76d647da5e54789e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2590 } Some("core::char::convert::from_u32_unchecked::precondition_check::h912028713b5641f4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2655 } Some("core::result::Result::unwrap_or::h23532980c4e818d2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2899 } Some("::add::h2edad40f2a4fb1ce") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5265 } Some("once_cell::unsync::Lazy::force::{{closure}}::hec943540b84df3bf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2829 } Some("core::char::convert::from_u32_unchecked::precondition_check::h34c7ee4e8d368a4a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2900 } Some("::div::h6dc93cd6e3e4e2e2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3006 } Some("core::char::convert::from_u32_unchecked::precondition_check::h19a835ca13400091") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5586 } Some("core::cell::RefCell::borrow_mut::hc530244b6f907dd6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2902 } Some("::sub::hf519f209a7604417") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4785 } Some(" as core::ops::function::FnOnce<()>>::call_once::h089a4abe8500e0d2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5777 } Some("std::rt::lang_start_internal::h65870361cd684b13") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4678 } Some("js_sys::futures::task::singlethread::try_create_task::he2500b3b0acf3755") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4861 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hbbb8741f660a5702") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4787 } Some(" as core::ops::function::FnOnce<()>>::call_once::h1c41f256fd9a5438") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4788 } Some(" as core::ops::function::FnOnce<()>>::call_once::h1ca9c48201887d0d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5364 } Some("core::option::Option::as_ref::h2a3e95581cdd5bd5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2392 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::visit_map::h1133708c6344ce67") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2986 } Some("core::num::::unchecked_add::precondition_check::hcb8051b773f8e760") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4791 } Some(" as core::ops::function::FnOnce<()>>::call_once::h28585ea13f28f0cd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3014 } Some("core::slice::iter::Iter::new::h835f913429c04342") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4793 } Some(" as core::ops::function::FnOnce<()>>::call_once::h45221773321be724") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4516 } Some("js_sys::futures::task::singlethread::try_create_task::{{closure}}::h1443ae56451368d5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5366 } Some("core::option::Option::as_ref::h4ecbc2cd9c53a874") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4797 } Some(" as core::ops::function::FnOnce<()>>::call_once::h49f7e32275bea2f7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5368 } Some("core::option::Option::as_ref::hf4d1756c765fd695") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4799 } Some(" as core::ops::function::FnOnce<()>>::call_once::h5765ccf45030faa0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5782 } Some("std::sys::backtrace::BacktraceLock::print::h9628b13d7fc2ed9d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4868 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hd9dfcf7102b84c2c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5783 } Some("::fmt::hd52b903692aa3126") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5589 } Some("core::slice::iter::::into_iter::h643bc70b4d825135") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4873 } Some("wasm_bindgen::__rt::maybe_catch_unwind::he603f73d21ef731c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5800 } Some("std::panic::get_backtrace_style::ha762fd749365eaab") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4876 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hf5dc7236d4c8f881") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 111 } Some("core::ptr::non_null::NonNull::new_unchecked::precondition_check::h8257023d5f44df16") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5933 } Some("core::fmt::num::::fmt::h1819df1398ded45f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 301 } Some("core::iter::traits::iterator::Iterator::try_fold::hda1fac220f70451a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 123 } Some("core::hint::assert_unchecked::precondition_check::hc986b6b04a2e947f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4801 } Some(" as core::ops::function::FnOnce<()>>::call_once::h62876c1aa1b425a0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 399 } Some("platform_mem::Global::new::hda8565867dc16c45") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4808 } Some(" as core::ops::function::FnOnce<()>>::call_once::h74c0f29e23b13989") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 678 } Some("unitedlinks_new") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 420 } Some("core::ptr::non_null::NonNull::new_unchecked::precondition_check::hf4ea99e2b704807c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4811 } Some(" as core::ops::function::FnOnce<()>>::call_once::h84353513e685d21f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1467 } Some("alloc::vec::Vec::push_mut::h9f321a45a4bc8096") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 432 } Some("core::hint::assert_unchecked::precondition_check::hc4845bb388dbe82c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4812 } Some(" as core::ops::function::FnOnce<()>>::call_once::h87a6c4baeca7feb3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2676 } Some("serde_json::error::Error::io::h722d368cb2488eef") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4817 } Some(" as core::ops::function::FnOnce<()>>::call_once::h90b44b366e305f12") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 585 } Some("::into_abi::h1ebe16f5942a4bcc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4819 } Some(" as core::ops::function::FnOnce<()>>::call_once::hb9350e529fbd2947") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 730 } Some("core::slice::::iter_mut::hdd45a62b4e2d7828") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5814 } Some("std::panicking::take_hook::hae204e8772008fec") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4828 } Some(" as core::ops::function::FnOnce<()>>::call_once::hebcbad13d352de0b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 839 } Some("doublets::mem::unit::generic::links_recursionless_size_balanced_tree_base::LinkRecursionlessSizeBalancedTreeBaseAbstract::get_link_value::hf9d62657c9a1a373") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4836 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h16e397c1ecefa15a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 922 } Some("<&mut [T] as leak_slice::LeakSliceExt>::leak::hc9994e2c5d113677") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5868 } Some(">::add::h2c38d0be479cdc72") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4837 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h1f3c64ada4f20800") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 968 } Some("doublets::mem::unit::generic::links_recursionless_size_balanced_tree_base::LinkRecursionlessSizeBalancedTreeBaseAbstract::get_link_value::h1a700a4c1796fbd5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 116 } Some("wasm_bindgen::convert::closures::_::+Output = R>::into_abi::hd7ec0f29e827f010") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4840 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h3ba3fef800906fc0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1076 } Some("core::alloc::layout::Layout::array::h8056b91d8ac81858") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 536 } Some("wasm_bindgen::__rt::WasmRefCell::new::h3137107f8ed49cbd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4843 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h487cd5ff563a992b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1165 } Some("::return_abi::hf5b525156412f4a1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 975 } Some("<[T] as beef::traits::internal::Beef>::ref_from_parts::h5116a16cfc83b45e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4848 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h7086853e30329c2d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1245 } Some("wasm_bindgen::convert::slices::>::into_abi::he18c5d14f3bf5b50") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1116 } Some("alloc::rc::Rc::drop_slow::he7719d958aeef84d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4849 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h737e0adadea804cf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1321 } Some("core::ptr::non_null::NonNull::new_unchecked::precondition_check::h7869cbfefe7c097a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1392 } Some("serde_json::de::Deserializer::fix_position::{{closure}}::h60e7c5938228b383") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4856 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h94a6603072f81ff6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1848 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h4029052b9b39581e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4859 } Some("wasm_bindgen::__rt::maybe_catch_unwind::haadb36caea840dc7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2896 } Some("::format_nonfinite::h5b0830e47a4cce08") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5934 } Some("core::fmt::num::::fmt::he6fbcf49a3276d84") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4860 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hb4c6c2239aaf2d51") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4862 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hbc743838003da786") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5935 } Some("core::fmt::num::::fmt::hb0d61f7959484774") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1896 } Some("::writeln::ha7d8f9b4e73c8aee") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4867 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hd837d442bad37682") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4871 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hdf5ee36ab7c6996f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1918 } Some("core::option::Option::is_some::hc2b2cc8772303750") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4874 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hed812d2fe3a31aa9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1978 } Some("core::hint::assert_unchecked::precondition_check::h3853eee3eb89458a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4877 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hfe780195f2d79df5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5687 } Some("alloc::vec::Vec::push_mut::h3c501e2a1d9694cd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2043 } Some("wasm_bindgen::convert::slices::::ref_from_abi::h942738096276d91e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5267 } Some("once_cell::unsync::OnceCell::get::h173c6c59d6896557") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2181 } Some("wasm_bindgen::convert::slices::>::into_abi::h33b57e9e190221f1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5269 } Some("once_cell::unsync::OnceCell::get::h7ee362a37fa21e8c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2465 } Some("core::slice::::iter::h244d7e65c97d6745") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 104 } Some("core::option::Option::map::h4076191c1c54387c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 195 } Some(" as test::formatters::OutputFormatter>::write_run_finish::h7e49e8feda642e1b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5271 } Some("once_cell::unsync::OnceCell::get::hea35747f5a5a9e4f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2470 } Some("wasm_bindgen_test::__rt::Timer::new::{{closure}}::h0fd43e61b7588d6a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2494 } Some("wasm_bindgen_test::__rt::Context::new::_::__wasm_bindgen_generated_WasmBindgenTestContext_new::{{closure}}::h2c30a6521ff1fc3f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5273 } Some("once_cell::unsync::OnceCell::get::hf008a460cbfae7b0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2504 } Some("core::ptr::non_null::NonNull::new_unchecked::precondition_check::h9177279ecc01ccd5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 282 } Some("core::ptr::drop_in_place>::h8b0b4302f7600da0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 450 } Some("core::option::Option::expect::h1df04cfa38622666") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5936 } Some("core::fmt::num::::fmt::h05406171d1c9dd7b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1668 } Some(" as core::ops::try_trait::Try>::branch::he1bacb12fbbfb616") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 452 } Some("core::option::Option::expect::h90f2c3e5795ff6a6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 334 } Some("test::cli::get_run_ignored::h0082c9bb5e2f80b8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1785 } Some("serde_json::ser::Formatter::write_string_fragment::hb48b6932e5c29c40") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 453 } Some("core::option::Option::expect::he4d0b25a21c0a397") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 443 } Some("core::option::Option::map::h532ee94696bdd15f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 401 } Some("platform_mem::_::>::grow::he99eb9462a664011") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1903 } Some("core::iter::traits::iterator::Iterator::for_each::h758613a15d6132b7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 478 } Some("wasm_bindgen::__rt::RcRef::new::h43e756688cfd2f20") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 445 } Some("core::option::Option::map::h6aa2310e9483284f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2159 } Some("alloc::rc::Rc::drop_slow::h1141dbca32de65d6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 481 } Some("wasm_bindgen::__rt::RcRef::new::h677832c40626fe45") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 404 } Some("platform_mem::raw_mem::RawMem::grow_filled::h757693ad8bfcb79d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2160 } Some("alloc::rc::Rc::drop_slow::h3c3963f2a792bb0a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 446 } Some("core::option::Option::map::ha552326f70ecace7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 513 } Some("wasm_bindgen::__rt::RcRefMut::new::hade18fbdddabf480") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2161 } Some("alloc::rc::Rc::drop_slow::hdd47f18b05a51d5b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1174 } Some("platform_trees::lists::absolute_circular_linked_list::AbsoluteCircularLinkedList::attach_as_first::hc832fa0f3e855492") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1166 } Some("core::fmt::builders::DebugList::entries::hb25be39b3061abb1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 534 } Some("wasm_bindgen::__rt::WasmRefCell::into_inner::hfe8854964a0dcd47") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2354 } Some("wasm_bindgen::convert::closures::_::+Output = R>::into_abi::h6bcac16f13d4f5bd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2581 } Some("core::ptr::non_null::NonNull::new_unchecked::precondition_check::h02e44dc7b2b77d9d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1197 } Some("platform_mem::raw_mem::RawMem::grow_filled::{{closure}}::h212e9d2717eecf46") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2592 } Some("core::hint::assert_unchecked::precondition_check::hcedcca8cc955e62a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 769 } Some("core::result::Result::expect::he40c2b65a05ea075") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2755 } Some("core::ptr::non_null::NonNull::new_unchecked::precondition_check::he354f3ba59420e8c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 795 } Some("core::tuple::::eq::h53386bd58828e0fb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2763 } Some("core::slice::::first::hee82be427e3c262d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 799 } Some("platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree::get_size_or_zero::hebf44b68d267dec2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1265 } Some("console_error_panic_hook::Error::stack::h9358192a934b138e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 814 } Some("platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree::get_left_or_default::hc668498568434018") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1518 } Some("::next::h05dba24ba0e7938d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 815 } Some("platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree::get_right_or_default::hc5f85135a22bf4ae") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2787 } Some("core::hint::assert_unchecked::precondition_check::h671236d29d741a9d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1889 } Some("wasm_bindgen_test::__rt::browser::Element::set_text_content::h61e204c3e8fb8d7c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2830 } Some("core::slice::raw::from_raw_parts::hec862fab736a92f0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 927 } Some("platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree::get_size_or_zero::hcc25fb0ea2488ffd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1894 } Some("::writeln::h3983d739045da7d4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2919 } Some(">::get_unchecked::h53d56d2ba7b59c9b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 942 } Some("platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree::get_left_or_default::h87fbb2fb97a7aa21") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1817 } Some(" as core::ops::drop::Drop>::drop::h865dca2fe79630c9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 943 } Some("platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree::get_right_or_default::h80466bf69b512c16") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1888 } Some("wasm_bindgen_test::__rt::browser::Element::text_content::h068f51dec72b0b37") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1075 } Some("core::ops::function::impls:: for &mut F>::call_once::h3bc1a6becd47647b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2363 } Some("wasm_bindgen_test::__rt::node::NodeError::stack::h2c0db7b1139816fa") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2463 } Some("wasm_bindgen_test::__rt::State::accumulate_console_output::h0437ce2029978c7b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3013 } Some("core::slice::::iter::h0375be2c1b4c6c04") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4648 } Some(">::into::hc25a60b9100bef3a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 202 } Some(" as test::formatters::OutputFormatter>::write_run_finish::hf62766d49131977b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1216 } Some(" as core::ops::index::Index>::index::h68474b3c6ccfee1f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2365 } Some("wasm_bindgen_test::__rt::detect::Constructor::name::h9783189f1a35a80e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3225 } Some("js_sys::Promise::resolve::hec1b3c4291faba67") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1246 } Some("wasm_bindgen::convert::slices::::vector_into_abi::h68dbabc31f86e860") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2355 } Some("wasm_bindgen::convert::closures::_::+Output = R>::into_abi::h7b7fb3f92cd27fec") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2477 } Some("wasm_bindgen_test::__rt::stringify::h3d813ca75dbedcd4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5372 } Some("core::option::Option::and_then::h49e0ae838957ea8e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1637 } Some("::return_abi::h7f89301f2a2ff78b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2515 } Some("__wbg_wasmbindgentestcontext_free") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2488 } Some("wasm_bindgen_test::__rt::Context::new::panic_handling::Error::stack::ha6945cb03fa80613") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1832 } Some("wasm_bindgen::__rt::RcRef::new::hc0c6ef932f212aad") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2543 } Some("::next::h3fae33594cc7608e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1843 } Some("wasm_bindgen::__rt::RcRefMut::new::h33ce94b71f83b06f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2654 } Some("core::result::Result::or_else::hd2430d61b94ee3b6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1932 } Some("::return_abi::h744862df6a811849") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2724 } Some("serde_json::read::error::h3e7920c84125fa6e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5533 } Some("__externref_table_dealloc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5839 } Some("alloc::sync::Arc::drop_slow::h4672fc93aa0d1b8e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2045 } Some("wasm_bindgen::convert::slices::::vector_into_abi::h66a0f973d18be563") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5559 } Some("wasm_bindgen::__wbindgen_string_get::h1dbab6f233b9c02f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2264 } Some("core::ptr::drop_in_place::h0a5f2e9569e874c3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 268 } Some("core::ptr::drop_in_place>>>::hd28d339813247cc4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5562 } Some("wasm_bindgen::__wbindgen_debug_string::h93b778b79799a308") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2796 } Some("memchr::memchr::memchr2_raw::h7d7a25f43063f9e3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 762 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::hc6d9f4fa83054bd9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2804 } Some("::count::h0ba8dd77dd8a50c7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1547 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::KV>::into_val_mut::h105c47e77998e541") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2920 } Some("zmij::FloatTraits::is_negative::hfc9003623b2e7f0f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2776 } Some("::visit_str::h04ea296bd7ef7613") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1727 } Some("serde_json::ser::Formatter::write_f64::h25ac8ee47e2bbabf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4789 } Some(" as core::ops::function::FnOnce<()>>::call_once::h1e8d606dba92f69d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4626 } Some("wasm_bindgen::convert::closures::_::+Output = R>::into_abi::h9b58d2d1ad5294e2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2332 } Some(" as core::default::Default>::default::h06dee458810e9bf2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4820 } Some(" as core::ops::function::FnOnce<()>>::call_once::hbce597e4dfdf2b65") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4893 } Some("wasm_bindgen::__rt::wbg_cast::hadd5d1c4dd4385ed") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2333 } Some(" as core::default::Default>::default::h35c74c886804043b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4823 } Some(" as core::ops::function::FnOnce<()>>::call_once::hc7eaa9874c709d9a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4978 } Some("alloc::rc::Rc::drop_slow::ha68c3dd20a23cd89") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2471 } Some("wasm_bindgen_test::__rt::record::{{closure}}::h3eb61a2913047de6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4824 } Some(" as core::ops::function::FnOnce<()>>::call_once::hd7567b7ce553f2f2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 756 } Some("wasm_bindgen::convert::impls::>::return_abi::hd3c924aa3db95bf4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4838 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h34edf79740397c87") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4847 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h6c2e5fa9442cb9c6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2472 } Some("wasm_bindgen_test::__rt::record::{{closure}}::ha24315b1980f8162") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4979 } Some("alloc::rc::Rc::drop_slow::hedb4b1ef286c2df6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4850 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h783bbbc94a682ef2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2473 } Some("wasm_bindgen_test::__rt::record::{{closure}}::hb7654e1f1dd3e3f4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5025 } Some(" as core::convert::From>::from::h4dbaca61d380abd1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2474 } Some("wasm_bindgen_test::__rt::record::{{closure}}::hbb094444a9326ae0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1130 } Some("doublets_web::UnitedLinks::count::_::__wasm_bindgen_generated_UnitedLinks_count::{{closure}}::h9ada396c2fca5f8d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4854 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h859cde8203d1dfcd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2475 } Some("wasm_bindgen_test::__rt::record::{{closure}}::hef9a0faee02045d3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2539 } Some("wasmbindgentestcontext_new") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4846 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h56b842f2f8f3fa50") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4875 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hf4c7ffcda377472f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5029 } Some(" as core::convert::From>::from::heedd11f0b9c16257") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2573 } Some("core::ptr::write_bytes::precondition_check::hf4071e5cb0135945") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5159 } Some("::return_abi::hc5f5573f7537e024") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5241 } Some(" as core::ops::try_trait::Try>::branch::h033e43623be2c4b6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1266 } Some("console_error_panic_hook::error::h99781460679c062c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5183 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h1df5bc7420da581e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2752 } Some("core::ptr::write_bytes::precondition_check::hf04be6a19904898d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5243 } Some(" as core::ops::try_trait::Try>::branch::h7ea3f18c4d59ed3d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4958 } Some("core::ptr::non_null::NonNull::new_unchecked::precondition_check::h858d19d16a079be6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5198 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h6b47edb934d60556") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4960 } Some("core::hint::assert_unchecked::precondition_check::h83c812807b49446b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5203 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h8158465ab5dd45b9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5127 } Some(">::into::h978d8ca5a098f129") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5244 } Some(" as core::ops::try_trait::Try>::branch::h9371d34bdfee9594") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5222 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::hed180f89017af3da") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5235 } Some("core::result::Result::is_ok::hfe814c4591af59e4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5574 } Some("wasm_bindgen::convert::slices::::vector_into_abi::h037a81312fab1628") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5835 } Some("core::ptr::drop_in_place>::h37818cad86e7727b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2855 } Some("core::ptr::read_unaligned::h5f8666f4dd1e8cd8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5471 } Some("wasm_bindgen::convert::slices::::into_abi::{{closure}}::haebf7e3ca1916f63") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1398 } Some("serde_json::de::Deserializer::peek_or_null::h40c9d7ea594a7239") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6021 } Some("__ashlti3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5478 } Some("wasm_bindgen::convert::traits::WasmRet::join::hc78dd57086a95b45") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1408 } Some("serde_json::de::Deserializer::next_char_or_null::h854f9cc07d353a38") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6028 } Some("__lshrti3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 372 } Some("getopts::Options::usage_items::{{closure}}::h8f477b16e3af22b3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2910 } Some("core::ptr::write_bytes::precondition_check::h1b915a2e5fdd2913") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 260 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::he1f1b9f34afb18a2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1553 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::KV>::split::h1ef2e19ea425eaf3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5537 } Some("__wbindgen_exn_store") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 292 } Some("core::ptr::drop_in_place>::h1afe3c7c9e07c46c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2838 } Some("alloc::vec::Vec::push_mut::h57a0852c7841db02") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5696 } Some("core::ptr::write_bytes::precondition_check::hf63833f4f90c389d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 294 } Some("core::ptr::drop_in_place>::hcd7834030e33b668") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5103 } Some("wasm_bindgen::convert::impls::>::return_abi::h43b61f16121bf97d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5784 } Some("std::panicking::panic_handler::{{closure}}::hf36efc37fdd11196") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 295 } Some("core::ptr::drop_in_place>::he9aac041bdabfc8c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5472 } Some("wasm_bindgen::convert::slices::::into_abi::h5a9eb060efad9ac8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5106 } Some("wasm_bindgen::convert::impls::>::return_abi::hd9b73061efaf5cef") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 386 } Some("getopts::Name::from_str::h7bdb73b1047e2f2e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5813 } Some("std::panicking::set_hook::h9454de0bb90a00ee") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 439 } Some("core::option::Option::unwrap_or_else::h8f478eaacdef88e0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1059 } Some(" as core::ops::drop::Drop>::drop::h1060100682edefaa") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 746 } Some("std::sync::once::Once::call_once::{{closure}}::h2946feab4036ff32") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5507 } Some("core::ptr::non_null::NonNull::new_unchecked::precondition_check::hd28a5fbb2ca55989") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 889 } Some("doublets::data::traits::Doublets::each_by::h912ceea50775e62b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5513 } Some("core::slice::raw::from_raw_parts_mut::h0a91c55898407ea8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 994 } Some(" as core::ops::drop::Drop>::drop::he09f51079561486c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5570 } Some("wasm_bindgen::convert::slices::>::from_abi::h45a26c60b4eada1d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 996 } Some(" as core::ops::drop::Drop>::drop::h480faeaf94689710") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1002 } Some(" as core::ops::drop::Drop>::drop::h0750c3996589d16a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1060 } Some(" as core::ops::drop::Drop>::drop::h2658a9bc23db80f8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5737 } Some("dlmalloc::dlmalloc::Dlmalloc::malloc::he97e96981fab807e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5108 } Some("wasm_bindgen::convert::impls::>::return_abi::he3a6765458987f0d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1520 } Some("::into_iter::h4961aba3094fa110") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2164 } Some(" as core::ops::drop::Drop>::drop::h4fdb069d199cba4a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2165 } Some(" as core::ops::drop::Drop>::drop::h56ca7f1b511c2665") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2166 } Some(" as core::ops::drop::Drop>::drop::h9e1c89cccc08d146") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2183 } Some("std::sync::once::Once::call_once::{{closure}}::h15f0a358814d8d1b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2322 } Some("alloc::boxed::Box::new_uninit_in::h6df77d21ac611fd3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2324 } Some("alloc::boxed::Box::new_uninit_in::hb98955a3be4e63af") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2431 } Some("wasm_bindgen_test::__rt::Performance::now::haeeef90f8ff5b592") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2568 } Some("core::char::methods::::is_ascii_digit::h9cf655e10efbd72d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2674 } Some(">::index::hda399c07c8ba2d3d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2835 } Some("alloc::vec::Vec::extend_from_slice::h98446827fbb12b0c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5180 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h12418676beb2f139") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2875 } Some("core::convert::num:: for usize>::try_from::hc6caf78f9eeece07") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5188 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h30239e3e2050d477") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2883 } Some(" as core::ops::try_trait::Try>::branch::h0b981cc85f5effae") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 312 } Some("core::slice::sort::stable::quicksort::quicksort::h52bcc310850dbb09") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5189 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h32d5e926d7060346") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2912 } Some("core::ptr::write_unaligned::h68547ec289adca64") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2914 } Some("core::ptr::write_unaligned::ha1469826d0125b71") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5194 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h575791df7de6cbb3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4954 } Some(" as core::ops::drop::Drop>::drop::hc44005b8f8fba4a5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1517 } Some("core::iter::traits::iterator::Iterator::fold::h01520d36fc538780") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4956 } Some(" as core::ops::drop::Drop>::drop::hf85a69b7874232b6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5240 } Some(" as core::ops::try_trait::Try>::branch::h79be9532c7fd9981") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5367 } Some("core::option::Option::as_ref::h8b5213885c3668fc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5515 } Some("core::panicking::assert_failed::h964777e193670203") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 204 } Some(" as test::formatters::OutputFormatter>::write_test_start::h30c56cdf2a51e7ce") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5571 } Some("wasm_bindgen::convert::slices::>::from_abi::h6ad9ce41f4dc27d4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5872 } Some(" as core::panic::PanicPayload>::take_box::h758986b2850b71a2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 205 } Some(" as test::formatters::OutputFormatter>::write_test_start::hee0976f74e720460") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5573 } Some("wasm_bindgen::convert::slices::>::into_abi::he3407c5ea4036c70") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6008 } Some("core::panicking::panic_misaligned_pointer_dereference::h334648e343d3f4ec") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 280 } Some("core::ptr::drop_in_place::hc4d50b257c77af05") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5587 } Some("core::hint::assert_unchecked::precondition_check::h280f820fd0cc64c8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 286 } Some("core::ptr::drop_in_place>::h5b44a2ca2e2a16bc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 437 } Some("wasm_bindgen::convert::impls::>::into_abi::h3124e1824c8d8323") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5699 } Some("core::ptr::non_null::NonNull::new_unchecked::precondition_check::h6e2d03713147a049") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 421 } Some("core::ptr::const_ptr::::offset_from_unsigned::precondition_check::h17445508f98a7fb5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 615 } Some("__wbg_linkrange_free") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 440 } Some("core::option::Option::unwrap_unchecked::h713c194939683126") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 675 } Some("unitedlinks_create") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 588 } Some("::into_abi::h1c731b8f2db6bd9f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2608 } Some("::grow::h5f8b6e9dc3116a43") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5701 } Some("core::hint::assert_unchecked::precondition_check::h2a9ff2d4257268b4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5196 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h6a6ea9c5e6086f26") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 614 } Some("__wbg_link_free") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 820 } Some("platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree::left_rotate_core::hf756546d01ef0e69") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5808 } Some("std::panicking::panic_count::increase::h540a4f946b6e7ad5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5928 } Some("core::fmt::num::imp::::fmt::hb24e64dd627b0762") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 821 } Some("platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree::right_rotate_core::he7e3f83e532ac6b7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5929 } Some("core::fmt::num::imp::::fmt::h041a24f64485404e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 948 } Some("platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree::left_rotate_core::h274427b1b54e89b1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 90 } Some("core::ptr::drop_in_place>>>::hee1696cbc0439bd0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 949 } Some("platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree::right_rotate_core::h5112f400d8ece01e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 977 } Some("<[T] as beef::traits::internal::Beef>::owned_from_parts::h50b0f486dcafb14a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2772 } Some("::grow::h575cc19bcd18ac71") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1659 } Some(" as core::ops::try_trait::Try>::branch::h9724ecb08ccdb1ce") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5099 } Some("wasm_bindgen::convert::impls::>::split::hcdf5b000982a83a4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 311 } Some("core::slice::sort::stable::quicksort::quicksort::h13d0c4cd1016a17a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2302 } Some("core::str::traits::::eq::hc6747c34aaea59fd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5536 } Some("__wbindgen_destroy_closure") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2923 } Some(">::shl::h74c89d04de302656") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5201 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h7bd91bced7611a49") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5557 } Some("wasm_bindgen::__wbindgen_number_get::h21bb09f38e0e20a1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4826 } Some(" as core::ops::function::FnOnce<()>>::call_once::hd99e42d6b25c51a0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5683 } Some("alloc::vec::Vec::try_reserve_exact::h6ad3f4106ea835e5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5727 } Some("::grow::h19fab6ffa7db6733") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5202 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h812b31429515dd44") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5739 } Some("__rustc[16f1505adc47261a]::__rdl_dealloc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5811 } Some("core::ptr::drop_in_place>::h34ebbcaf05107b1e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 72 } Some(" as core::future::future::Future>::poll::{{closure}}::{{closure}}::h49112025301a0d10") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5209 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h9f742725b9db25a0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5993 } Some("core::result::unwrap_failed::h8a0dea2fe721e8ce") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 425 } Some("alloc::vec::Vec::from_raw_parts_in::hfa58b31f24746c5a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 517 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h0045a3f8d7d585bc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 849 } Some("doublets::mem::unit::store::Store::get_link_unchecked::ha5f7c20469ed6c74") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 518 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h0ad09aa59d69ec0a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 317 } Some("test::filter_tests::ha1fe0311527bef12") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 890 } Some("doublets::data::traits::Doublets::count_by::h841943599af72b79") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 112 } Some("::default::h04ae66aa46a54943") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 522 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h6e6cad079e1386f2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1163 } Some("doublets_web::Link::new::_::__wasm_bindgen_generated_Link_new::{{closure}}::h5388b54ec6c417da") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 528 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h9febf70cf5cf561a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1868 } Some("core::option::Option::map::h6dac5464f6781d3e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5211 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::hb30bdab1bbad80fb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 531 } Some("wasm_bindgen::__rt::WasmRefCell::into_inner::h62a6ff7671181844") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2044 } Some("wasm_bindgen::convert::slices::::into_abi::h3fc2f22822b0cd70") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 864 } Some("doublets::mem::unit::store::Store::mut_link_part::h1ebe8411a1c96e4e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 812 } Some("platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree::get_leftest::hd54baecd7bfe1629") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2483 } Some("wasm_bindgen_test::__rt::Context::filtered_count::_::__wasm_bindgen_generated_WasmBindgenTestContext_filtered_count::{{closure}}::he6adc490915dde00") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 616 } Some("__wbg_linksconstants_free") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 813 } Some("platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree::get_rightest::h01db00cbadcd17a1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5213 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::hc1c6d45d19aca57c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2802 } Some("memchr::memchr::count_raw::h20b9edcf7f0134ad") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1067 } Some("beef::generic::Cow::borrow::h11c56249ed4db6f3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 732 } Some("doublets_web:: for wasm_bindgen::JsValue>::from::h9eaa7f3d46e3ef6b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5357 } Some("wasm_bindgen::convert::impls::>::into_abi::hba0b7caecd05e772") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 875 } Some("doublets::mem::unit::store::Store::attach_target_unchecked::h29b767646ed2a3c0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5453 } Some("wasm_bindgen::convert::slices::::into_abi::hba19793957d3e5d4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 877 } Some("doublets::mem::unit::store::Store::detach_target_unchecked::h40e3d2e7372f0f33") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5567 } Some("core::option::Option::map::h642836ba12ea9084") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5676 } Some("< as core::ops::drop::Drop>::drop::DropGuard as core::ops::drop::Drop>::drop::ha0f9a50ebe8293fa") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1225 } Some("alloc::alloc::realloc::ha0611b1c1470d5e6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5678 } Some("alloc::vec::Vec::from_raw_parts_in::hb5a7f1e4902ef6c6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5217 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::hd3d66f1373d8777b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1574 } Some("serde_core::ser::impls::::serialize::h61ed15e8f84f6264") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5680 } Some("alloc::vec::Vec::from_raw_parts_in::h7f8d46dfab2fd761") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1575 } Some("serde_core::ser::impls::::serialize::h1b19d45c36233623") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5926 } Some("core::fmt::num::imp::::fmt::h09880411cb7be385") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5219 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::hd923811d7b9a5857") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 199 } Some("<&T as core::fmt::Display>::fmt::h1de125e5579734a9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 214 } Some("<&T as core::fmt::Display>::fmt::hca74b7d3401addae") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 355 } Some("test::helpers::metrics::MetricMap::insert_metric::h1d5bea2999a0631a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 451 } Some("core::option::Option::expect::h3f5c6f0db63c77aa") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 456 } Some("core::option::Option::unwrap_or::h458bf96ccb2816ea") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 940 } Some("platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree::get_leftest::h51bb661a1b04baac") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1626 } Some("alloc::string::String::new::h0456a3a48fbcc827") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 463 } Some("platform_data::constants::LinksConstants::default_external::h8f6649b00fa5068d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 535 } Some("wasm_bindgen::__rt::WasmRefCell::new::h2ef3193aca51f335") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1804 } Some(" as serde_core::ser::SerializeStruct>::serialize_field::h0fbe41e2598d2544") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5223 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::hf4a673a1a0d9904b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 634 } Some("__wbg_unitedlinks_free") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1805 } Some(" as serde_core::ser::SerializeStruct>::serialize_field::h1bdcf8ede10d78f1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 855 } Some("doublets::mem::unit::store::Store::update_mem::h912bb4d090d06892") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5669 } Some(" as core::iter::traits::iterator::Iterator>::next::h82acd6fce01c44dc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1806 } Some(" as serde_core::ser::SerializeStruct>::serialize_field::h4d82fb7ad5b305a6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 905 } Some("core::cell::RefCell::new::h734d13d795b876ac") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1807 } Some(" as serde_core::ser::SerializeStruct>::serialize_field::h564e22c1be217bf7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5876 } Some("::get::heb4b8bac6804dc2b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1290 } Some("::fmt::ha406d1d065ef59e8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1808 } Some(" as serde_core::ser::SerializeStruct>::serialize_field::h7da1833aa6f0479e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1809 } Some(" as serde_core::ser::SerializeStruct>::serialize_field::h9a8730806dcefade") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1791 } Some("serde_json::ser::Formatter::begin_object_key::h8253bfab5a7c8d99") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2898 } Some("zmij::write::heeb392bac65950b8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1810 } Some(" as serde_core::ser::SerializeStruct>::serialize_field::ha206ab492f79f064") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1793 } Some("serde_json::ser::Formatter::begin_array_value::h0f6bc2b6c418459b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1811 } Some(" as serde_core::ser::SerializeStruct>::serialize_field::hb2331617d0868855") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1812 } Some(" as serde_core::ser::SerializeStruct>::serialize_field::hd686bccc77386d11") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1991 } Some("::allocate::h0fb0c5dcafc29c55") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5901 } Some("::fmt::h4715f37320baf771") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2204 } Some("core::ops::function::FnOnce::call_once::hfd5632fb47fe360a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2219 } Some("core::ptr::drop_in_place::h7abcf9d761320624") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2213 } Some("core::ptr::drop_in_place>>::he6bd75f17dc8bc15") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 985 } Some("core::ops::function::FnOnce::call_once::h92491ae18d9ab5fc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2316 } Some("core::cell::RefCell::new::h9981f1878f003eeb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2214 } Some("core::ptr::drop_in_place>::hdf3511c1f7b61dc8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2318 } Some("core::cell::RefCell::new::hef4fa38959dd8171") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2298 } Some("core::ptr::drop_in_place>::hb2af52db29f03061") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2416 } Some("__wbgbench_import") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2299 } Some("core::ptr::drop_in_place>>::he33eb7c9587d8c6e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2607 } Some("::allocate::h99830397111bbe7f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2546 } Some("alloc::string::String::new::h5a588084aab3d3c2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2611 } Some("::allocate_zeroed::h5a24a4afe19a6794") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2715 } Some("::custom::hafc222a48a3c1b4a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2769 } Some("::allocate::hfe2dbac4e02b618a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 797 } Some("platform_trees::trees::iterative_size_balanced_tree::IterativeSizeBalancedTree::attach_core::ha1955f709b050893") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2826 } Some("core::ptr::drop_in_place>::h0946e51f261be7d5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1206 } Some("alloc::vec::Vec::from_raw_parts_in::precondition_check::hdf1151b3dc241187") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2881 } Some("memchr::arch::all::memchr::One::rfind_raw::{{closure}}::h3d588d6e7c036e5a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2771 } Some("::allocate_zeroed::h934b1c4070ae6f56") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1207 } Some("alloc::vec::Vec::set_len::precondition_check::hfeed2d1629d47ff1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2939 } Some("zmij::write8::h0b39cb507984167a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2781 } Some("core::num::::unchecked_neg::precondition_check::h985f4af30ed97444") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1277 } Some("core::ptr::const_ptr::::offset_from_unsigned::precondition_check::hc899f322009c0b3b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4532 } Some("wasm_bindgen::closure::ScopedClosure::own::hab7fb4f7185a484c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2911 } Some("core::ptr::const_ptr::::is_aligned_to::h1c45e94a93725cb7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4855 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h8c176cac56fb3ba9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1283 } Some("alloc::vec::Vec::set_len::precondition_check::he16cf8c92608cf02") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4857 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h9f2ce5f87501d03f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2955 } Some(" as core::iter::traits::iterator::Iterator>::next::hea558355696dc922") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1317 } Some("core::option::Option::ok_or::h1c62c48ccffd0be3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4865 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hcf50cfb6175c282e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2988 } Some("core::ptr::const_ptr::::is_aligned_to::h4edd0187c188ed85") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 987 } Some("core::ops::function::FnOnce::call_once::h4ec6a70e8c49dd55") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4866 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hd64b65dee96ebace") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1318 } Some(" as core::ops::try_trait::Try>::branch::heac9093ffa34f83c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2993 } Some(" as core::iter::traits::iterator::Iterator>::next::h425fa4d3c95b9ee7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4908 } Some("core::ptr::drop_in_place>>::hd0f096eeae92b7d3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4920 } Some("core::ptr::drop_in_place>>::h361ba3bf41059707") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5185 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h2cc5b31d2bf1d15b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4936 } Some("core::ptr::drop_in_place js_sys::futures::task::singlethread::ConsoleTask>>>>::h347b8f65555a1d54") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5581 } Some("core::num::::unchecked_mul::precondition_check::h6ccc126c673a4e40") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4938 } Some("core::ptr::drop_in_place js_sys::futures::task::singlethread::ConsoleTask>>>>::he9354c2c712940a1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5612 } Some(" as core::iter::traits::iterator::Iterator>::next::hb11b5e220759278d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5520 } Some("alloc::alloc::realloc::h2d0ad23e13853ea3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5674 } Some("wasm_bindgen::convert::slices::>::from_abi::h58bf39bc781cb394") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 989 } Some("core::ops::function::FnOnce::call_once::h2442f8e668d06f35") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5695 } Some("core::num::::unchecked_mul::precondition_check::h4233aad77e1e4b1c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 941 } Some("platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree::get_rightest::h9ec9985ec0bec11b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5715 } Some("core::ptr::const_ptr::::is_aligned_to::hbb1d88b6d98d2f97") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1131 } Some("doublets_web::UnitedLinks::create::_::__wasm_bindgen_generated_UnitedLinks_create::{{closure}}::h16372ae675add8a8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5717 } Some(" as core::iter::traits::iterator::Iterator>::next::h3316042e516b6ae9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1257 } Some("wasm_bindgen::convert::slices::>::into_abi::h97d90bf6c5117bc6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 168 } Some("alloc::raw_vec::RawVec::grow_one::he7aec97286df0ed7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1456 } Some("wasm_bindgen::convert::slices::>::into_abi::hd0d2061ebd28f6fb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 251 } Some("alloc::raw_vec::RawVec::grow_one::h05d5d440becdc39f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 925 } Some("platform_trees::trees::iterative_size_balanced_tree::IterativeSizeBalancedTree::attach_core::hde15d4231758c0f0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1454 } Some("alloc::vec::Vec::set_len::precondition_check::h0a177e8b4024bed9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1478 } Some(" as core::ops::drop::Drop>::drop::h7703f8922902b3ee") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 318 } Some("alloc::raw_vec::RawVec::grow_one::h4320013927734172") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1661 } Some(" as core::ops::try_trait::Try>::branch::ha420048a8fee961f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1479 } Some(" as core::ops::drop::Drop>::drop::h94a265f7867ce2bd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 333 } Some("alloc::raw_vec::RawVec::grow_one::h1d35d74ce7367b9b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1138 } Some("doublets_web::LinksConstants::via_ranges::_::__wasm_bindgen_generated_LinksConstants_via_ranges::{{closure}}::hf24c951c1197875f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1663 } Some(" as core::ops::try_trait::Try>::branch::hcb30106bc4be6b10") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1818 } Some("serde_core::de::Error::missing_field::h3584f75ce756cd51") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1905 } Some("core::option::Option::unwrap_unchecked::h4bb6981bc89e0325") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 354 } Some("alloc::raw_vec::RawVec::grow_one::h4644310e126504af") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1820 } Some("serde_core::de::Error::duplicate_field::hd7f654f36bdc7818") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1906 } Some("core::option::Option::unwrap_unchecked::h9d7fe7c53990b0e1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1887 } Some("wasm_bindgen_test::__rt::browser::Browser::new::h3b744de6c99132d9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 357 } Some("alloc::raw_vec::RawVec::grow_one::h9f39107536405a34") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1957 } Some("__wbgtest_module_signature") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2356 } Some("wasm_bindgen_test::__rt::node::og_console_log::h7adf9d450dbbc9c8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1976 } Some("core::ptr::const_ptr::::offset_from_unsigned::precondition_check::hbf6d334a74332bdf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 358 } Some("alloc::raw_vec::RawVec::grow_one::haacdfce33a94c221") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2434 } Some("wasm_bindgen_test::__rt::js_console_log::h70bed961e593e5ec") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 362 } Some("alloc::raw_vec::RawVec::grow_one::h461c112c7172c301") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2341 } Some(">::get_unchecked::precondition_check::h4515a72b49d135c3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2476 } Some("wasm_bindgen_test::__rt::record::{{closure}}::{{closure}}::h591b0bccd6dae9ff") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2436 } Some("wasm_bindgen_test::__rt::js_console_error::he2a5434be4eb46b8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2342 } Some(">::get_unchecked_mut::precondition_check::h3574efcb057cf493") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 382 } Some("alloc::raw_vec::RawVec::grow_one::h729915d73efd509e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2884 } Some("memchr::memchr::memrchr_raw::hecdb5a941bb67746") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2583 } Some("core::ptr::const_ptr::::offset_from_unsigned::precondition_check::h2f94e6abf3c93bff") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 384 } Some("alloc::raw_vec::RawVec::grow_one::h72bf72085a4536f9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5125 } Some("wasm_bindgen::convert::slices::>::into_abi::h08e72e419cbdfabe") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2600 } Some("alloc::vec::Vec::set_len::precondition_check::h02123c97c0ebf34f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5191 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h3ee9497c10576252") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 385 } Some("alloc::raw_vec::RawVec::grow_one::hda7164f8f50f00e5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2659 } Some(" as core::ops::try_trait::Try>::branch::h50e7230dbb4af2b3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2693 } Some("core::ptr::const_ptr::::offset_from_unsigned::precondition_check::h774ab901d01f660a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5555 } Some("wasm_bindgen::__wbindgen_throw::h3f426da05a0ef094") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1331 } Some(" as serde_core::de::MapAccess>::next_value_seed::h84595ef4e8bbe990") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2784 } Some("core::num::::unchecked_sub::precondition_check::h1fce04a191900f77") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5675 } Some("wasm_bindgen::convert::slices::>::from_abi::hb90897f27d3a2276") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2478 } Some("wasm_bindgen_test::__rt::record::{{closure}}::{{closure}}::h6ce2e0f2c6a34e2b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1333 } Some(" as serde_core::de::MapAccess>::next_value_seed::h7a46bc00897791f9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2841 } Some("alloc::vec::Vec::set_len::precondition_check::hbdf77ee393aa3b25") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5950 } Some("core::fmt::float::::fmt::h35573ff003c93dff") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2852 } Some("core::num::::unchecked_sub::precondition_check::h6753f35ceb25e56a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2479 } Some("wasm_bindgen_test::__rt::record::{{closure}}::{{closure}}::hab5befaf272193f3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5776 } Some("std::io::buffered::bufwriter::BufWriter::write_all_cold::h42a4871d99653251") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1335 } Some(" as serde_core::de::MapAccess>::next_value_seed::hae19109ec2a387e1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2869 } Some("core::slice::::split_at_unchecked::precondition_check::h65a0f8dddd715d96") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5818 } Some("<&T as core::fmt::Debug>::fmt::h7c083def2c66feba") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2480 } Some("wasm_bindgen_test::__rt::record::{{closure}}::{{closure}}::hd98c4b02d8ec2209") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2872 } Some("core::slice::iter::::into_iter::h2580c52fbe07f632") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1337 } Some(" as serde_core::de::MapAccess>::next_value_seed::hb6f7903c9612b310") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5896 } Some("alloc::sync::arcinner_layout_for_value_layout::hbf4b7cbef4226928") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2947 } Some(">::get_unchecked::precondition_check::h93154efab384034b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1339 } Some(" as serde_core::de::MapAccess>::next_value_seed::he22a1c1b8ba2b742") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 70 } Some(" as core::future::future::Future>::poll::{{closure}}::h924c7a6b227fbdeb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2987 } Some("core::num::::unchecked_sub::precondition_check::hd6ed8865ea01c57f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4652 } Some("alloc::collections::vec_deque::VecDeque::grow::hdcb6ad4c32dc418d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6005 } Some("core::panicking::panic_nounwind_fmt::h3ba54741176bb0ae") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1341 } Some(" as serde_core::de::MapAccess>::next_value_seed::hecb10533f5d90a97") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4912 } Some("core::ptr::drop_in_place>::h5975abe5bbe95c47") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 88 } Some("core::ptr::drop_in_place>>::h4f3a08263b6b2b3b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1343 } Some(" as serde_core::de::MapAccess>::next_value_seed::hfcf6f261828141aa") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 97 } Some("<&str as core::str::pattern::Pattern>::into_searcher::h1a64d13ce96e05a8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 462 } Some("platform_data::constants::LinksConstants::default_internal::h9bb3b5f38e37f69a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1345 } Some(" as serde_core::de::MapAccess>::next_value_seed::hfd7997651282f155") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 682 } Some("core::slice::raw::from_raw_parts::h3410ee8a05b2b5ff") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1347 } Some(" as serde_core::de::MapAccess>::next_value_seed::hcc637ca08037e99d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 683 } Some("core::slice::raw::from_raw_parts_mut::h1e6f730c5e6ac3e7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 684 } Some("core::slice::raw::from_raw_parts_mut::h4b0eb3d39114b8d5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1351 } Some(" as serde_core::de::MapAccess>::next_value_seed::h0ee17f1b9eaf9580") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 758 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h64f8112eeaea1684") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1830 } Some("serde_core::ser::impls::>::serialize::hb5b8ab75c6adaf70") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1869 } Some("wasm_bindgen::convert::impls::>::split::ha3b598750ed250e7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2481 } Some("wasm_bindgen_test::__rt::record::{{closure}}::{{closure}}::he90aedaab4136438") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 759 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::ha050b80ee537d9e2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2927 } Some("zmij::umul128::h64c8d29cc8aa3ef4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1506 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::visit_seq::h27a4d3d7f4aafafd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 761 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::ha670bc93b773dfc4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4800 } Some(" as core::ops::function::FnOnce<()>>::call_once::h5c8698f520e7b4e8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 887 } Some("doublets::data::traits::Doublets::delete_by::hed5bbc49c089b37d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4872 } Some("wasm_bindgen::__rt::maybe_catch_unwind::he276ce5b76aba7a2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2514 } Some("::from_abi::ha88d274538772878") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 727 } Some("::div::h5ff637a3f0e3e485") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5215 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::hc4481626f6be2714") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 796 } Some("doublets::mem::unit::generic::links_recursionless_size_balanced_tree_base::LinksRecursionlessSizeBalancedTreeBase::new::h2ac0d3e7226695ef") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2571 } Some("::spec_to_string::hc68e0971199b4f4e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5770 } Some("std::sync::once_lock::OnceLock::initialize::h7d7e84928eb3a33f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 886 } Some("doublets::data::traits::Doublets::delete::hc6fa36f9aa444196") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1064 } Some("::write_str::hfe84b7be8674c809") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6017 } Some("::fmt::he6997221335e102e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1282 } Some("::write_str::h45c41e6c0941adfc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 873 } Some("doublets::mem::unit::store::Store::attach_source_unchecked::haaa8020d916dfd9c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1473 } Some("<&mut W as serde_json::io::imp::Write>::write_all::h714957d792d3e809") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 720 } Some(" as platform_mem::raw_mem::RawMem>::grow::h898068a844f0b877") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 876 } Some("doublets::mem::unit::store::Store::detach_source_unchecked::he9908ab01c66d044") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1255 } Some("wasm_bindgen::convert::slices::::into_abi::{{closure}}::h6eaa087db53c01b9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1474 } Some(" as serde_json::io::imp::Write>::write_all::hdb4b4825e8c72746") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1073 } Some("core::num::::checked_sub::hc006b99ca15373ff") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4957 } Some("core::ptr::drop_in_place>::h0e053c4e4f3a858e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1620 } Some("::write_str::hb6809e12cdef4033") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5358 } Some("core::option::Option::unwrap_unchecked::h5d4d45109ebb77ae") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1121 } Some(" as core::convert::From>::from::ha367457dbbcee18a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1847 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h35c383d76012a828") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1450 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_ignored_any::h309778f1943a7387") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5359 } Some("core::option::Option::unwrap_unchecked::h5ff1daa1455b3a96") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1850 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h5fa996bcc9e75567") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1686 } Some("wasm_bindgen_test::__rt::criterion::_::::serialize::h89315baa3d41749b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1851 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h67ad7a6653929a1a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2603 } Some("alloc::raw_vec::RawVecInner::deallocate::h09119480c6b4d253") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1349 } Some(" as serde_core::de::MapAccess>::next_value_seed::h5e58435d997b5e81") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2130 } Some("wasm_bindgen::convert::closures::_::invoke::h73cb53d6fae92ded") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2625 } Some("alloc::raw_vec::RawVecInner::deallocate::h6f2e345e68b97395") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2748 } Some("::peek_position::h568f75477cbe0201") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1657 } Some(" as core::ops::try_trait::Try>::branch::h83bea5dba6033db2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2936 } Some("zmij::compute_exp_shift::h8dfba7c2d802c7fd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2046 } Some("wasm_bindgen::convert::slices::::into_abi::{{closure}}::ha369c37d981bcca7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5023 } Some(" as core::convert::From>::from::h103cbe9597c9d469") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5027 } Some(" as core::convert::From>::from::he7297d646b8ab400") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1852 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h8578a7061a4f75a9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 347 } Some("test::console::run_tests_console::{{closure}}::h4da431777fa0d703") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1854 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h897c98e5f178d3c4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5181 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h13faca79ff657996") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1855 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h8c2470a59e4d553f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5182 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h19e9271847fab6b3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2677 } Some("serde_json::error::Error::syntax::hcc7278523dcabd25") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1950 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::he7855753711fd6b7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5186 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h2f33e1f4528550c4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5360 } Some("core::option::Option::unwrap_unchecked::h6b359e9509f41c8d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5163 } Some("wasm_bindgen::convert::closures::_::invoke::hbac2625716052ce4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2040 } Some("wasm_bindgen::convert::slices::null_slice::hbc9b8a9ff3bf23cd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5187 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h2fc0abca8f505830") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5722 } Some("alloc::raw_vec::RawVecInner::deallocate::hf014b3065c390a66") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5361 } Some("core::option::Option::unwrap_unchecked::hfccbd3d5cf308e62") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5190 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h32e6cd031f72e13f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2657 } Some("<&str as core::str::pattern::Pattern>::into_searcher::h98766ec52b28fa7d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5534 } Some("__externref_table_alloc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5195 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h66d293eae49a07e4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2711 } Some("::write_str::hc50f56ed061906d0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5583 } Some("core::ptr::const_ptr::::offset_from_unsigned::precondition_check::h52d88fd8f272d7c3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2732 } Some("::position::hcc6f99b322b436e8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5197 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h6a8f19be1bbf516e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5672 } Some("alloc::vec::Vec::from_raw_parts_in::precondition_check::ha0e61a5113cb12cc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2778 } Some("::is_nonfinite::h2007a4b8a1fcdf7c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5199 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h799c2dcf4dc33928") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5707 } Some("alloc::vec::Vec::set_len::precondition_check::h014a91d842ec01a1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3024 } Some("::fmt::hef48f3d14f5dc7e1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5761 } Some("std::io::impls::>::write_all::h45006fd56a6f70bd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5200 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h79a9436f79835e2d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4517 } Some("wasm_bindgen::JsThreadLocal::with::h9fe836281273cf86") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5210 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::ha757daaa255f7397") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4684 } Some("js_sys::futures::task::singlethread::Task::into_raw_waker::h2e328b38e5a96ca4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5864 } Some(" as core::fmt::Write>::write_str::hc5a49c5b09555a86") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5212 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::hbda0a86013c08297") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4832 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h0705d0e9246b7fa1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5220 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::hdb430cb3080167a9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2795 } Some("memchr::arch::all::memchr::Two::find_raw::{{closure}}::h2de947006985203c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5221 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::he6e43acf1d3d2a85") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2849 } Some(" as core::slice::index::SliceIndex<[T]>>::index::h1b5603da83768023") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 711 } Some("platform_mem::raw_place::RawPlace::as_slice_mut::h57e8da4204a22dcd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2940 } Some("zmij::count_trailing_nonzeros::h77ce312bf8d2639c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 844 } Some("doublets::mem::unit::store::Store::each_core::h1bc45569a00de22c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 715 } Some("platform_mem::raw_place::RawPlace::as_slice::h3c50a5a977196a43") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4863 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hc4afd4cb25a9d195") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4869 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hdd85261b4f9429d1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 817 } Some(" as platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree>::clear_node::hf0702d10913b2798") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4895 } Some("<&A as core::alloc::Allocator>::deallocate::h46b9bd83bdb227df") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 920 } Some(" as core::clone::Clone>::clone::h6ebb06967774b822") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5875 } Some("::take_box::h0536373fffc709d7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 945 } Some(" as platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree>::clear_node::h3ee6604d5355fa14") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 129 } Some(" as core::clone::Clone>::clone::h3239e1062a3e7012") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5953 } Some("core::fmt::builders::DebugTuple::finish::h21f9784fc20eee35") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1085 } Some("alloc::rc::Rc::increment_strong_count_in::h24eb7980807941ed") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1087 } Some("alloc::rc::Rc::increment_strong_count_in::h7f894e412d69957c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 175 } Some("core::ptr::drop_in_place<(test::types::TestDesc,test::test_result::TestResult,core::time::Duration,alloc::vec::Vec)>::h532abc67c1acfbb5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1093 } Some("alloc::rc::Rc::from_raw_in::h553dd35ccaf62e59") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 248 } Some("std::sync::mpmc::context::Context::with::{{closure}}::hee7c3b4e012fef41") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1095 } Some("alloc::rc::Rc::from_raw_in::h88bdf96f0f507127") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5473 } Some("wasm_bindgen::convert::slices::::vector_from_abi::h19e1381df9dad981") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1444 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_struct::h0ebe5e325a636de5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1097 } Some("alloc::rc::Rc::from_raw_in::h687c7fce7c87d63c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5572 } Some("wasm_bindgen::convert::slices::::vector_from_abi::hb745ae8e1f475303") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1099 } Some("alloc::rc::Rc::from_raw_in::h51b20ef76aeb002e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 457 } Some(" as core::clone::Clone>::clone::hd7061f89180c9017") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1482 } Some(" as core::ops::index::IndexMut>::index_mut::hc8dd7d1932835346") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 576 } Some("doublets_web::LinksConstants::full_new::hfea2c28879702939") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2149 } Some("alloc::rc::Rc::increment_strong_count_in::hf0b604471b765cd3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5895 } Some("alloc::vec::Vec::remove::assert_failed::h4b49fb3afd7a6d82") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 729 } Some("core::slice::::split_last_mut::hc5d2c9c1119582b0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2154 } Some("alloc::rc::Rc::from_raw_in::h91428ba7f0610b0f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5921 } Some("core::panicking::panic_bounds_check::he16a4bbc04eea6a6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1188 } Some("platform_trees::lists::absolute_circular_linked_list::AbsoluteCircularLinkedList::attach_before::heb237dd455ed901b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2261 } Some("core::ptr::drop_in_place::h203bcdf624c1f234") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 254 } Some("<&T as core::fmt::Debug>::fmt::h6b82f07f1fad4beb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2874 } Some("core::result::Result::unwrap_unchecked::h9ddd81b5051ab5bc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 406 } Some("<&mut All as platform_mem::raw_mem::RawMem>::allocated::h2cb153c453944a72") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 532 } Some("wasm_bindgen::__rt::WasmRefCell::into_inner::he577cd2c327b8c29") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2921 } Some(">::shr::h525530da3cfcaa19") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1252 } Some("wasm_bindgen::convert::slices::::into_abi::h96e3c2c13f90b931") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 329 } Some("::to_vec_in::ConvertVec>::to_vec::h3c1f510d2fe45d5a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 571 } Some("doublets_web::LinksConstants::via_external::habd5b2555e8b605a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2942 } Some(">::shl::hbec45c3485fd4239") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 847 } Some("doublets::mem::unit::store::Store::get_total::h5942dc9edf33dc25") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 811 } Some("platform_trees::trees::iterative_size_balanced_tree::IterativeSizeBalancedTree::detach_core::haf35d592ce1342e7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2944 } Some(">::shr::h5824590803b4ab4d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1313 } Some(" as core::ops::drop::Drop>::drop::h7246b3adc9f5a4b4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1595 } Some("wasm_bindgen::convert::slices::::into_abi::haf913eff89384d41") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2945 } Some(">::shl::h6b6c6846d35a825b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5949 } Some("core::fmt::float::::fmt::ha6b2edd39e57a797") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4975 } Some("alloc::rc::Rc::from_raw_in::h5326e616d748a9fa") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 880 } Some("doublets::mem::unit::store::Store::get_link_part_unchecked::h46ea9cb7b9f02dd4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5852 } Some("::write_str::he0f136bfd437b8d6[1]") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1614 } Some("core::result::Result::unwrap_or::h154de45cb994ea93") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 838 } Some(" as doublets::mem::unit::generic::links_recursionless_size_balanced_tree_base::LinkRecursionlessSizeBalancedTreeBaseAbstract>::get_header::hbd13487d29f9dc79") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6020 } Some("memcmp") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 200 } Some("alloc::fmt::format::h0bca27cabb6c99c2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1020 } Some("core::ptr::drop_in_place,alloc::rc::Rc>>>::h8f6cb7bdfcf03c80") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1736 } Some("serde_json::ser::format_escaped_str::hec18ea824efc4423") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 702 } Some("core::ptr::non_null::NonNull<[T]>::slice_from_raw_parts::h0285af1ce3b0b56f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1239 } Some(" as core::fmt::Display>::fmt::h85b7ea3a304e71fe") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 688 } Some(" as core::iter::traits::iterator::Iterator>::next::h1ba892bacbb986d5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 982 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h503ec8163d55dab1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 939 } Some("platform_trees::trees::iterative_size_balanced_tree::IterativeSizeBalancedTree::detach_core::h5b610f35e7c14fcc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1250 } Some("wasm_bindgen::convert::slices::::from_abi::h5289911d553a3a4c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1272 } Some("core::fmt::Write::write_fmt::h5895c8654a847d57") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1519 } Some("core::iter::traits::iterator::Iterator::chain::h5c338ba79242fac2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 689 } Some(" as core::iter::traits::iterator::Iterator>::next::h776396d436b803f5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1381 } Some("serde_json::de::from_slice::h0e9b7159cdc1abe3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1742 } Some("<&mut serde_json::ser::Serializer as serde_core::ser::Serializer>::serialize_unit_variant::h6e7ff34907e581e3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 858 } Some("doublets::data::traits::Doublets::try_get_link::h983cb0ae3a3dfe16") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1593 } Some("wasm_bindgen::convert::slices::::from_abi::hdc1a25b4a597cb77") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2107 } Some("once_cell::unsync::OnceCell::get_or_init::{{closure}}::h31b173f4ae0d04ff") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1074 } Some("core::num::::unchecked_mul::precondition_check::hb51cca93e81d48ee") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2209 } Some("core::ptr::drop_in_place,serde_json::error::Error>>::h20cd205ff84b49b7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2667 } Some("alloc::string::String::into_boxed_str::h1a2f776ed78d3217") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2296 } Some("core::ptr::drop_in_place>::h3541079539dc3b85") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1320 } Some("core::ptr::const_ptr::::is_aligned_to::h47cb6cbf829dbd1b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1741 } Some("<&mut serde_json::ser::Serializer as serde_core::ser::Serializer>::serialize_struct::hc4b49b25c3127208") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2741 } Some("serde_json::read::is_escape::h3b49f9490bb7bc6e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2430 } Some(">>::from::h344cacf063982ec6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2393 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::visit_seq::h26789679aa6b8f12") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1788 } Some("serde_json::ser::to_writer::h98b711b59a7c25dc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2653 } Some("core::result::Result::map_err::h4ed21470ad9f9c46") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1670 } Some(">::extend::hc4f1de42c8c3949c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1872 } Some("wasm_bindgen_test::__rt::worker::write_output_line::hf867b83d9ce9843e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2670 } Some(">::index::hb78c4ab605405895") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1891 } Some("wasm_bindgen_test::__rt::browser::DOCUMENT::init::h33878087f35e397c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2750 } Some(">::get::h9527e33aa5104eb7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 967 } Some(" as doublets::mem::unit::generic::links_recursionless_size_balanced_tree_base::LinkRecursionlessSizeBalancedTreeBaseAbstract>::get_header::h86b87975046c5779") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1726 } Some("<&mut serde_json::ser::Serializer as serde_core::ser::Serializer>::serialize_f64::h419a64773f1ba032") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2774 } Some(" as core::ops::drop::Drop>::drop::hd35c0d71b1d31bf7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2137 } Some("core::str::::contains::ha78f8dda5ba52698") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2956 } Some("<::fmt::LookForDecimalPoint as core::fmt::Write>::write_char::h7fc7286a9f9c2c0c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1025 } Some(" as core::ops::drop::Drop>::drop::hb8744856c73a39d6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4803 } Some(" as core::ops::function::FnOnce<()>>::call_once::h66d9e961e3c290e9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5538 } Some("__wbindgen_free") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4902 } Some("js_sys::futures::queue::Queue::new::{{closure}}::he03f6c82ebb05ea3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1053 } Some(" as core::ops::drop::Drop>::drop::h2402f2efaad612cd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5888 } Some("alloc::raw_vec::RawVecInner::reserve::do_reserve_and_handle::h4a4baaf90ee85523") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5280 } Some("once_cell::unsync::OnceCell::get_or_init::{{closure}}::h655bb4829410dfc1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1899 } Some("core::iter::traits::iterator::Iterator::fold::h7dabcb45501237a3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1140 } Some("doublets_web::LinksConstants::via_external::_::__wasm_bindgen_generated_LinksConstants_via_external::{{closure}}::h53f1d8008e60804c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5362 } Some("core::option::Option::as_mut::ha4e01a98f48910d4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 126 } Some("alloc::rc::RcInnerPtr::inc_strong::h2091bfcb8e97ed14") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1923 } Some("core::option::Option::Some::hb5b494a0816fa7d0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1080 } Some("alloc::rc::RcInnerPtr::inc_strong::h3e69fdbe73ea57ac") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2024 } Some("serde_core::private::size_hint::cautious::hf9513071dabf3261") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1193 } Some("doublets::mem::unit::generic::unused_links::UnusedLinks::get_header::hb16fef0a0d2ddbba") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5512 } Some(">::get_mut::h3468a4e944d94bc4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5780 } Some("std::sync::once_lock::OnceLock::initialize::hc4fd7951fb7bd1f4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 243 } Some("std::sync::mpmc::Sender::send::ha303d17a4fb6155d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2163 } Some(" as core::clone::Clone>::clone::hb7448beee30f521e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1082 } Some("alloc::rc::RcInnerPtr::inc_strong::h69268fd1e2d13fa2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2245 } Some("core::ptr::drop_in_place,alloc::rc::Rc>>>::h1fd51a5ec4d43b8d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 170 } Some(" as test::formatters::OutputFormatter>::write_run_start::h63b1dbb65d465762") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1194 } Some("doublets::mem::unit::generic::unused_links::UnusedLinks::get_mut_header::h7276dc0bd1a61dcf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2144 } Some("alloc::rc::RcInnerPtr::inc_strong::h565289ca71068b5d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2063 } Some("core::bool::::then::h191ddc2d9c396ba3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2297 } Some("core::ptr::drop_in_place>::h06c6dce11aa86360") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2146 } Some("alloc::rc::RcInnerPtr::inc_strong::he65c4f6ffd65762f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 259 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h5ec4ff66d0c0920b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2124 } Some(" as core::iter::traits::iterator::Iterator>::next::hf7e950bc1f135d70") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2203 } Some("core::ops::function::FnOnce::call_once::hdd4eb1e1478dcceb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1477 } Some(" as core::ops::drop::Drop>::drop::h1fa62cf6e4282cd6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 763 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::hc89023bf6ed8f5fa") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1624 } Some("alloc::collections::btree::map::entry::VacantEntry::insert::hbc1d799368524d79") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 764 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::he84ef6087c0a4859") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2492 } Some("wasm_bindgen_test::__rt::Context::new::panic_handling::{{closure}}::hbb017976993414b8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2127 } Some(" as core::iter::traits::iterator::Iterator>::next::h562fb48ebf9f8776") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 885 } Some("doublets::data::traits::Doublets::create_by::h6061644829d4e73a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1751 } Some("serde_core::ser::Serializer::collect_map::{{closure}}::ha7ac7aadd9664476") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1445 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_struct::h2495038f50f13e65") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2482 } Some("wasm_bindgen_test::__rt::Context::filtered_count::hf5fe5d78025502bb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2570 } Some("::spec_to_string::hd6864f8f20e98c63") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1137 } Some("doublets_web::UnitedLinks::constants::_::__wasm_bindgen_generated_UnitedLinks_constants::{{closure}}::h8b42190a85da56b6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2572 } Some("core::num::::unchecked_mul::precondition_check::hec5d9e81ee6a52f8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2484 } Some("wasm_bindgen_test::__rt::Context::include_ignored::he487a569136a3764") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2622 } Some("zmij::Buffer::format::hce800bbcf3fe10fb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1143 } Some("doublets_web::LinksConstants::clone::_::__wasm_bindgen_generated_LinksConstants_clone::{{closure}}::h7000fba4a13786b6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2512 } Some("::into_abi::h14ec24c9640d88c2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2574 } Some("core::ptr::const_ptr::::is_aligned_to::h6668c104e2b8c9ef") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1226 } Some("::deallocate::h622e25d90a7ae549") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2071 } Some("<(&Arg1,) as js_sys::JsArgs>::apply_call::hc3bea28205eaeed8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3018 } Some("<[A] as core::slice::cmp::SlicePartialEq>::equal::hed99991b2420ef8c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1306 } Some("core::ptr::drop_in_place>::hbd0b58ef7102ed11") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2585 } Some(" as core::iter::traits::iterator::Iterator>::next::h2723b80c4bbe8c33") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1311 } Some("::deallocate::hbe947920d35f7c15") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4968 } Some("alloc::rc::RcInnerPtr::inc_strong::h0f5f19ca932617f9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2081 } Some("js_sys::Function::call::h3fc36dd868a27d04") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1393 } Some("serde_json::de::Deserializer::ignore_value::h6655c180d6eac3c1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2684 } Some("core::fmt::Write::write_fmt::hc628535e86b624f2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4970 } Some("alloc::rc::RcInnerPtr::inc_strong::hf19adeb4ae8b3349") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1527 } Some("::discard::h0e8a9769fcc1f2b1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2615 } Some("serde_json::de::Deserializer::new::hcc466122cb417c8c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2185 } Some("core::ops::function::FnOnce::call_once::hdaefbdda5517dd57") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5718 } Some("<[A] as core::slice::cmp::SlicePartialEq>::equal::hb86c54dcb3c45ccb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1990 } Some("::deallocate::h83a7c6d0b77cd530") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2805 } Some("::count::{{closure}}::hfa368f3314d77c90") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2783 } Some("core::num::::unchecked_mul::precondition_check::hd714466f46cd4287") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1546 } Some("alloc::collections::btree::node::move_to_slice::hd3352d211ed5fbe8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2814 } Some("core::ops::function::FnOnce::call_once::h0a38976d2f28bcbd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2215 } Some("core::ptr::drop_in_place::he4324de2fbc22142") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2958 } Some("core::str::::contains::h9c27351c0b0512df") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2235 } Some("core::ptr::drop_in_place>>::h5f30c90a6c161aab") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1644 } Some(" as core::ops::try_trait::Try>::branch::h0b752ea37837aab8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2847 } Some(" as core::iter::traits::iterator::Iterator>::next::h38a1c29f6ca87c60") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2974 } Some("core::fmt::Write::write_fmt::h19ecd0815a6b8757") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2256 } Some("core::ptr::drop_in_place>::hf639383848f34bb1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2189 } Some("core::ops::function::FnOnce::call_once::hb920e825ee41985c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4683 } Some("js_sys::futures::task::singlethread::Task::into_raw_waker::raw_wake_by_ref::ha32987aac59a95ea") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2191 } Some("core::ops::function::FnOnce::call_once::hd2f0c873a110323f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1692 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::visit_map::h03cf731db96c0eea") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4904 } Some("core::ops::function::FnOnce::call_once::h5163bbae2c6d5565") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2605 } Some("::deallocate::hd3260d5ddf25d60d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2857 } Some("core::ptr::const_ptr::::is_aligned_to::hc35b400c06aea303") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4921 } Some("core::ptr::drop_in_place>::h8edc80041c67e944") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1648 } Some(" as core::ops::try_trait::Try>::branch::h2a44b581e4f8f213") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2614 } Some("core::option::Option::unwrap_or::h733fc2e2188d2306") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2770 } Some("::deallocate::h194a0e92d2595fff") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4922 } Some("core::ptr::drop_in_place>::h8d0edeaa5777d479") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1652 } Some(" as core::ops::try_trait::Try>::branch::h65a0c27cf4a04232") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2729 } Some("::discard::h35c0afc1cf56d274") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4993 } Some(" as core::clone::Clone>::clone::h6aa20219ae709fb2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2195 } Some("core::ops::function::FnOnce::call_once::hf9af8fab6ad5b722") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4994 } Some(" as core::clone::Clone>::clone::hd48076bb5293b397") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3022 } Some("::deallocate::h9ceaa1e400c3c119") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4682 } Some("js_sys::futures::task::singlethread::Task::wake_by_ref::hc850f671ba515d8d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4999 } Some("js_sys::futures::queue::queueMicrotask::hd3df3882fc28b6ea") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2197 } Some("core::ops::function::FnOnce::call_once::h2fb18ca6ca93f853") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4802 } Some(" as core::ops::function::FnOnce<()>>::call_once::h64bbcf4b216ea6cd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2433 } Some("wasm_bindgen_test::__rt::console_log::h2ba316f048f07537") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5459 } Some("wasm_bindgen::closure::JsClosure::_wbg_cb_unref::h04a08a6e0744acb1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1653 } Some(" as core::ops::try_trait::Try>::branch::h6667242f747801b0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2467 } Some("wasm_bindgen_test::__rt::State::log_test_result::he0fcbaf74d4a3ace") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5371 } Some("core::option::Option::or_else::hf65e62edaed37ef2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5474 } Some("wasm_bindgen::convert::slices::::from_abi::hfc7f9b40a8d63cf5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2578 } Some(" as core::ops::drop::Drop>::drop::ha1185ac4dc2bbe3b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5155 } Some("wasm_bindgen::convert::closures::_::invoke::h9a01e03131372b78") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1658 } Some(" as core::ops::try_trait::Try>::branch::h87ac83a58c21a93e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5452 } Some("wasm_bindgen::__rt::wbg_cast::h29d11069f9dbc967") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2822 } Some(" as core::ops::drop::Drop>::drop::h8e5027ba6280ee63") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1665 } Some(" as core::ops::try_trait::Try>::branch::hd5bfef6e29c2bd19") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2840 } Some("alloc::vec::Vec::set_len::h4dcbe9993f606272") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5590 } Some("core::option::Option::unwrap_or_else::h67d4b2f55e836467") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 119 } Some("wasm_bindgen::convert::slices::WasmSlice::from_usize::he173c991e9f2f8db") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1666 } Some(" as core::ops::try_trait::Try>::branch::hd6a2393c571f009a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2922 } Some("zmij::FloatTraits::get_exp::hcec94722942d7852") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 120 } Some("::split::hbcad107df0a04f67") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 122 } Some("std::rt::lang_start::{{closure}}::h112e7419f26c995c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5593 } Some("::fmt::h98b16f26c821dc97") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5763 } Some("std::io::stdio::print_to_buffer_if_capture_used::h2f80a095e9511588") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 289 } Some("core::ptr::drop_in_place>::h35d7db5ec5df9154") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5670 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::ha1ed69894d03da03") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 291 } Some("core::ptr::drop_in_place>::h392f645966c6c963") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 360 } Some("::write_char::h32949ed49a1ffdbf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 293 } Some("core::ptr::drop_in_place>::h586dd7863156c87e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5671 } Some(" as core::convert::From>>::from::h831ce51bc0637a2e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 319 } Some("test::test_main_static::h9e697147caa0a28a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1669 } Some(" as core::ops::try_trait::Try>::branch::hffb466daa49715a4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5673 } Some(" as core::convert::From>>::from::hf4f3727b840cd587") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 400 } Some("platform_mem::_::>::allocated_mut::he750ca79921166d3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2414 } Some("::stringify_error::h287e4824dd3da449") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 403 } Some("platform_mem::_::>::allocated::h73495fe09c076a01") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 73 } Some("core::alloc::layout::Layout::from_size_align_unchecked::precondition_check::h694d2774528e943a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3155 } Some("<(&Arg1,) as js_sys::JsArgs>::apply_call::h61b31a14bd475d78") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2540 } Some("wasmbindgentestcontext_run") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3173 } Some("js_sys::Function::call::h224d9c0f90170923") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2704 } Some(" as core::iter::range::RangeIteratorImpl>::spec_next::h679aec00c8cc176c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4790 } Some(" as core::ops::function::FnOnce<()>>::call_once::h1fb04be2d5a6238c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4510 } Some(" as wasm_bindgen::convert::traits::IntoWasmAbi>::into_abi::h21cfefc8e455fe3d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5363 } Some("core::option::Option::as_ref::h0f433344a39c4a21") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5448 } Some("wasm_bindgen::__rt::take_last_exception::h8f0fed5db4468d49") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5365 } Some("core::option::Option::as_ref::h2a55435b4da9f416") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 405 } Some("::erased_allocated::h4ce251a220e1f0c2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 423 } Some(" as core::fmt::Debug>::fmt::h594699a3e12ba8af") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5855 } Some("::sub::h96e856d3f50e18dd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 520 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h3078611e31cc20f5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 565 } Some("doublets_web::UnitedLinks::constants::h4ecd330c2c80fe04") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1133 } Some("doublets_web::UnitedLinks::delete::_::__wasm_bindgen_generated_UnitedLinks_delete::{{closure}}::h12a4689479644577") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 693 } Some("core::alloc::layout::Layout::from_size_align_unchecked::h854eb4107f3a60d3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 694 } Some("core::alloc::layout::Layout::from_size_align_unchecked::precondition_check::h53490bc7ee521e6f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 718 } Some("platform_mem::alloc::Alloc::new::h1d43544319e92d4e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 992 } Some(" as core::ops::drop::Drop>::drop::h0fe0e44ff613e4f6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 719 } Some(" as platform_mem::raw_mem::RawMem>::allocated_mut::hc373e05343320426") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1448 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_struct::heefb92554a3620b2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1523 } Some("js_sys::futures::future_to_promise::{{closure}}::h8f8abb80c9a750a1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5709 } Some(" as core::ops::drop::Drop>::drop::hc375cdfb68f735eb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1295 } Some("core::fmt::num::::fmt::heaae915390de9ba1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2112 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::h95f4c19a818ae576") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5765 } Some("alloc::sync::Arc::drop_slow::h419f2ba926fd2183") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4892 } Some("wasm_bindgen::__rt::wbg_cast::h38c9714435b550b2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6009 } Some("::fmt::hf666267d40d98217") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 725 } Some(" as platform_mem::raw_mem::RawMem>::allocated::h12b60beeabafea98") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 742 } Some(">::from::h04868ea9151ebbd5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 998 } Some(" as core::ops::drop::Drop>::drop::he2c4bb9b987a2229") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 804 } Some("platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree::inc_size::h319e08f59748a1b0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1000 } Some(" as core::ops::drop::Drop>::drop::hf1965058f76ee387") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 96 } Some("core::cell::RefCell::new::h65da39568761736a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 816 } Some("platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree::dec_size::haf25118cd68ee7f8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1004 } Some(" as core::ops::drop::Drop>::drop::hd41b7cac0e642315") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2501 } Some("::poll::h26a022a789c34c77") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1006 } Some(" as core::ops::drop::Drop>::drop::h27fd56e5bcb539e6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 854 } Some("doublets::mem::unit::store::Store::get_header::h0ae4e55c9f84a17d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 102 } Some("__wbgt__web::united_links_crud_round_trip") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 121 } Some("std::rt::lang_start::h87d847f506241c9e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1008 } Some(" as core::ops::drop::Drop>::drop::h3af4f95b0c8aaa55") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5369 } Some("core::option::Option::or_else::h27f6d263a85ca9f4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 856 } Some("doublets::mem::unit::store::Store::mut_header::h9d104863e12c420f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 862 } Some("doublets::mem::unit::store::Store::detach_source::ha49332a32c24cfe0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5370 } Some("core::option::Option::or_else::h2fb67a39c48a4427") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 863 } Some("doublets::mem::unit::store::Store::detach_target::hf2c0edbbbca13bef") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 865 } Some("doublets::mem::unit::store::Store::attach_source::h8a12f6dbcc6abdfc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 956 } Some("doublets::mem::unit::generic::sources_recursionless_size_balanced_tree::each_usages_core::h1a4363158e7e3453") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 866 } Some("doublets::mem::unit::store::Store::attach_target::hc4626130edf86316") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 867 } Some("doublets::mem::unit::store::Store::get_from_mem::he2a6c11851b26e3f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 223 } Some("test::formatters::pretty::PrettyFormatter::write_results::h6ba3cbd3c6cae0fe") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 361 } Some("::write_str::he0f136bfd437b8d6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 69 } Some(" as core::future::future::Future>::poll::h2383b43f5f7447cf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2757 } Some("core::alloc::layout::Layout::from_size_align_unchecked::precondition_check::h4217e254311e4dfa") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 932 } Some("platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree::inc_size::h1df2b1da154e34c4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 944 } Some("platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree::dec_size::h3f1245623e5ff180") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 345 } Some("<[f64] as test::stats::Stats>::quartiles::h11434dc8c366888e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1070 } Some(" as core::ops::deref::Deref>::deref::h8f404d575410a637") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1119 } Some(" as core::convert::From>::from::h2f800308bbb8cc8f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1120 } Some(" as core::convert::From>::from::h407673e588b71e04") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 225 } Some("test::formatters::pretty::PrettyFormatter::write_results::he0204f4a4e67254e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 392 } Some("getopts::Matches::opt_strs::h1f5c78a1e8f5ec21") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1310 } Some("core::alloc::layout::Layout::from_size_align_unchecked::precondition_check::h4e73196569fb3e94") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2759 } Some("core::slice::::split_first::h35e27c0bf51cfb09") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1122 } Some(" as core::convert::From>::from::hdf63dbdf9c53c05f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1545 } Some("alloc::collections::btree::node::move_to_slice::h7ab5c9e9166dbd64") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 342 } Some("<[f64] as test::stats::Stats>::sum::h2f67050f380fc0c5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2833 } Some("alloc::vec::Vec::reserve::hefed0589d03a0c42") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1010 } Some(" as core::ops::drop::Drop>::drop::hc486ea7c5bdee769") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1606 } Some("core::alloc::layout::Layout::from_size_align_unchecked::precondition_check::hecc4f123db0c3d22") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3012 } Some("core::alloc::layout::Layout::from_size_align_unchecked::precondition_check::h56d71d90514805c8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1743 } Some(" as core::iter::traits::iterator::Iterator>::next::h8336b0798a969f1e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1012 } Some(" as core::ops::drop::Drop>::drop::ha076a0046dd9b3b7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1760 } Some("serde_core::ser::SerializeMap::serialize_entry::h1b86a207233aa91d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5230 } Some("core::alloc::layout::Layout::from_size_align_unchecked::precondition_check::h1b9b6a0977dd7343") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5264 } Some("once_cell::unsync::Lazy::force::{{closure}}::hb68aeca14572e46f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1763 } Some("serde_core::ser::SerializeMap::serialize_entry::h1e812324eb2fba2a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2167 } Some(" as core::ops::drop::Drop>::drop::h102847b70b79348b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5488 } Some("core::fmt::num::::fmt::h170c237bdccb69ad") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5510 } Some("core::alloc::layout::Layout::from_size_align_unchecked::precondition_check::hf26f36e6de96442e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6010 } Some("::next::he6314720ae185572") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5601 } Some("::drop::h6af20b3a91824e9d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1141 } Some("doublets_web::LinksConstants::via_only_external::_::__wasm_bindgen_generated_LinksConstants_via_only_external::{{closure}}::hd8782220249a0456") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1249 } Some("wasm_bindgen::convert::slices::WasmSlice::from_usize::h0eeeb0e420551d68") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2168 } Some(" as core::ops::drop::Drop>::drop::h17c10470017f29bc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1267 } Some("::split::hc2b81292061af9ea") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1529 } Some("::next::hf99b7f7a0370dbf0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1502 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::visit_map::h39c57dc16edf8487") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2169 } Some(" as core::ops::drop::Drop>::drop::hb4b01a1d5b182afa") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1530 } Some(" as core::iter::traits::iterator::Iterator>::next::h1a1b3f10cfcf3288") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1605 } Some("::fmt::h9dd59a21bd0c3afe") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2170 } Some(" as core::ops::drop::Drop>::drop::hcefa8ce47ba02af7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1628 } Some("serde::private::de::missing_field::h1afd9b066dde85b3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5691 } Some(" as core::ops::drop::Drop>::drop::h1b44a6b98a3367cf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1765 } Some("serde_core::ser::SerializeMap::serialize_entry::h1f7ac8574e98c645") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1747 } Some("<&alloc::collections::btree::map::BTreeMap as core::iter::traits::collect::IntoIterator>::into_iter::ha47d2a3460cf1490") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5703 } Some("core::alloc::layout::Layout::from_size_align_unchecked::precondition_check::he5bfb1eeff78a1c2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1767 } Some("serde_core::ser::SerializeMap::serialize_entry::h22f0d37c6fc7b8aa") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5706 } Some("alloc::vec::Vec::reserve::h7234333366cfe572") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4653 } Some("alloc::collections::vec_deque::VecDeque::handle_capacity_increase::h197a829790919f6f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1629 } Some("serde::private::de::missing_field::h2c1e101ae128f3a8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1630 } Some("serde::private::de::missing_field::h3c0143f8b1716301") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1631 } Some("serde::private::de::missing_field::h79d5079b318fa089") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 388 } Some("getopts::Matches::opt_vals::h8c118216c2b49b1d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1632 } Some("serde::private::de::missing_field::ha491d1892f222225") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 290 } Some("core::ptr::drop_in_place>::hafe9379765dc154d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2588 } Some("core::str::traits:: for core::ops::range::Range>::get::heb9c339d3e6f3ca4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 754 } Some("wasm_bindgen::convert::impls::>::split::h5e55dfb6e358b4c0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1633 } Some("serde::private::de::missing_field::ha6e731aa1153f4d5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5946 } Some("core::num::flt2dec::strategy::grisu::format_shortest_opt::hfcab0953839aa679") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1769 } Some("serde_core::ser::SerializeMap::serialize_entry::h2cf5904cc483e319") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2696 } Some("core::str::traits:: for core::ops::range::Range>::get::hae53383771dbe78b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1634 } Some("serde::private::de::missing_field::hbfda44639c4a86cf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1635 } Some("serde::private::de::missing_field::hca983284bef7e2c4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5793 } Some("std::thread::thread::Thread::new::hd357cc77790a9f89") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1677 } Some("::deserialize::__FieldVisitor as serde_core::de::Visitor>::visit_str::h1a260cd53f346917") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2099 } Some("once_cell::unsync::Lazy::force::{{closure}}::he1ad187d4ba90161") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1560 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::KV>::split::h33839229d5b98794") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4691 } Some("js_sys::futures::task::singlethread::Inner::is_ready::hf9c320a2ba9594da") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 723 } Some(" as platform_mem::raw_mem::RawMem>::shrink::h93168323e2f53699") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2834 } Some("alloc::vec::Vec::into_boxed_slice::hd6cb546261bed9ec") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5096 } Some("wasm_bindgen::convert::impls::>::split::h28a4ca2b33d63811") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5098 } Some("wasm_bindgen::convert::impls::>::split::h5005ef44c2f5eb71") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4911 } Some(" as core::ops::drop::Drop>::drop::h5a7098b2b290221f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5231 } Some("core::result::Result::ok::h7f734fb987d9e53d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1636 } Some("serde::private::de::missing_field::hec5af8f2e93da5d4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1715 } Some("core::num::::wrapping_abs::hf48bdbb3cade3996") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4914 } Some(" as core::ops::drop::Drop>::drop::hb7e8c2a720bf5a55") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1863 } Some("wasm_bindgen::__rt::WasmRefCell::new::h43d57fe789558223") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5851 } Some("::write_char::h32949ed49a1ffdbf[1]") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2041 } Some("wasm_bindgen::convert::slices::WasmSlice::from_usize::hd294860815def949") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2079 } Some("::split::h17aef50c0ec06497") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 667 } Some("linksconstants_clone") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2093 } Some(">::from::h38f6f1fb2d71023c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 308 } Some("core::slice::sort::stable::drift::sort::hfe072eddb767f226") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2094 } Some("::join::h407d02fe1cefc4c1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 673 } Some("unitedlinks_constants") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2346 } Some(" as core::convert::From>::from::h76d0fd1a2acf944c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1996 } Some("::into_searcher::h1463350edfa20a41") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2567 } Some("wasm_bindgen_test_shared::coverage_path::{{closure}}::he919cd0869a44a4f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2678 } Some("::fmt::hadecd14cbdae7369") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2799 } Some("memchr::memchr::memchr2::ha3c824dafe70dc57") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2703 } Some("core::iter::range::>::next::haada8aa826cbc1cc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2705 } Some("core::iter::range::>::next::h7eb9b53eadcbc291") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4656 } Some("alloc::collections::vec_deque::VecDeque::pop_front::hc51e37ad0d7aad75") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5262 } Some("once_cell::unsync::Lazy::force::{{closure}}::h4447e98c9f5c3545") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 241 } Some("std::sys::thread_local::no_threads::LazyStorage::initialize::h6e177359440ec7c2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1447 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_struct::h63c8aff93aa6bdac") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5909 } Some("core::fmt::num::::fmt::h5231b83b7d9a2a57") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 376 } Some("core::iter::traits::iterator::Iterator::advance_by::h2433babe78958453") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1821 } Some("serde_core::de::Error::unknown_variant::hac72ca3aab9e4185") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5483 } Some("wasm_bindgen::externref::Slab::alloc::hbe885cd3f56af343") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2777 } Some("<&T as core::fmt::Display>::fmt::he5f01e3a92bc616f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5681 } Some("alloc::vec::Vec::into_boxed_slice::h3dd50cf03802e3d2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 479 } Some("wasm_bindgen::__rt::WasmRefCell::borrow::hf6e7d6db4f65d4ce") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2865 } Some("core::iter::range::>::next_back::hcc7422c58d7e79cb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2882 } Some(" as core::iter::traits::iterator::Iterator>::next::h49abaf5aa226588a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5682 } Some("alloc::vec::Vec::into_boxed_slice::he7b61fc2474abb07") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2918 } Some("core::slice::::get_unchecked::h340718c97fc188af") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2926 } Some("zmij::umul128_hi64::h93f1d5a959073a93") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2949 } Some("<&T as core::fmt::Display>::fmt::hc8853b21745c6489") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2171 } Some(">::call::h8a1f4e84e751eaf9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1771 } Some("serde_core::ser::SerializeMap::serialize_entry::h481b645a53791710") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2953 } Some("<&T as core::fmt::Display>::fmt::h64e2e9ca862a4e7d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2960 } Some("<&T as core::fmt::Debug>::fmt::h0320833e49c3dfc4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1773 } Some("serde_core::ser::SerializeMap::serialize_entry::h4ebc41653676f783") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 480 } Some("wasm_bindgen::__rt::WasmRefCell::borrow::ha789894ebce0c419") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 298 } Some("core::str::pattern::TwoWaySearcher::next::h1892b8ebdad83738") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 482 } Some("wasm_bindgen::__rt::WasmRefCell::borrow::h38c77cbb5614c041") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5887 } Some("::write_char::h32949ed49a1ffdbf[2]") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 310 } Some("core::slice::sort::stable::drift::sort::hc313045630e5b885") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3016 } Some("<&str as serde_core::de::Expected>::fmt::hcecf11a59a9f7d18") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 483 } Some("wasm_bindgen::__rt::WasmRefCell::borrow::h27f37c0cc4f2c62e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 512 } Some("wasm_bindgen::__rt::WasmRefCell::borrow_mut::ha92ec283057ff8cc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 128 } Some("alloc::rc::Rc::new::h77761bade7be857f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 514 } Some("wasm_bindgen::__rt::WasmRefCell::borrow_mut::ha0bea60919244f79") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 515 } Some("wasm_bindgen::__rt::WasmRefCell::borrow_mut::hc771783a7b51fd21") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2150 } Some("alloc::rc::Rc::new::h018f4a9bcb20e6ad") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 516 } Some("wasm_bindgen::__rt::WasmRefCell::borrow_mut::heb83779a96328331") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4511 } Some("wasm_bindgen::convert::slices::WasmSlice::from_usize::h8992ce82068a2600") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1775 } Some("serde_core::ser::SerializeMap::serialize_entry::h8a1930afee231a84") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 916 } Some(" as core::slice::index::SliceIndex<[T]>>::index_mut::hf2f96ada66d1671a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2151 } Some("alloc::rc::Rc::new::hd0b6df92978b6a56") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4677 } Some("::split::h364f7c14c1f7e6b4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1777 } Some("serde_core::ser::SerializeMap::serialize_entry::heb3bbe7a3bda7283") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4901 } Some("core::ops::function::FnOnce::call_once::h1d8b40c530306e06") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 472 } Some("doublets_web::const_utils::from::hf442cebd6a807ad7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4905 } Some("core::ops::function::FnOnce::call_once::h7dcc6ad744f0e5c1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1956 } Some("__wbgtest_cov_dump") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2593 } Some("core::alloc::layout::Layout::from_size_align_unchecked::precondition_check::ha44534f721d27381") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 314 } Some("alloc::str::::replace::hbccedbb307b40542") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2598 } Some("alloc::vec::Vec::reserve::hf329654a2153b789") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2636 } Some("alloc::collections::btree::node::move_to_slice::hc2b3c3560b21775a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1458 } Some("alloc::vec::Vec::try_remove::hd30cd70f0be3f5cd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2751 } Some(" as core::ops::deref::Deref>::deref::h9def5d0d7f3ef62a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1446 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_struct::h255e87145d62fb21") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5743 } Some("dlmalloc::dlmalloc::Dlmalloc::dispose_chunk::h0e84f108fd9f7b7c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1556 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::Edge>::insert_recursing::h894a68b1124e9101") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2100 } Some("once_cell::unsync::Lazy::force::{{closure}}::hfb28a5e6c57cebc1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1397 } Some("serde_json::de::Deserializer::parse_number::hf5ab8b2df18a27f0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2385 } Some("wasm_bindgen_test::__rt::criterion::baseline::__wbgbench_dump::ha18fbc0e238fe95b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1953 } Some("::stringify_error::hb0fce8d07a99e153") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1610 } Some("core::result::Result::map::h0b02537286955640") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5802 } Some("std::thread::current::with_current_name::{{closure}}::hb64e3346a3e8f8f8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2415 } Some("__wbgbench_dump") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 149 } Some(" as test::formatters::OutputFormatter>::write_run_start::h164c9bb51aec0c81") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5024 } Some(" as core::convert::From>::from::h28c3eed52b720233") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2584 } Some("core::str::validations::next_code_point::ha89fd6157323e982") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5028 } Some(" as core::convert::From>::from::hebd0b3e0a97cca97") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 150 } Some(" as test::formatters::OutputFormatter>::write_run_start::h688265b4b8ca46a1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5279 } Some("once_cell::unsync::OnceCell::get_or_init::{{closure}}::h306065db9f777ebc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2665 } Some("serde_json::error::make_error::h94a3a7b37ea9183d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5281 } Some("once_cell::unsync::OnceCell::get_or_init::{{closure}}::hdaa87b56aea4b2d6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5454 } Some("::split::hea90fd361d36d224") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2943 } Some("zmij::umulhi_inexact_to_odd::h26d4b072ca6cde18") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5468 } Some("wasm_bindgen::convert::slices::WasmSlice::from_usize::hee5977cd39f28a5e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2992 } Some("core::str::validations::next_code_point::h7daf703ec389673a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5479 } Some("::join::he765060206b34472") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5509 } Some("core::alloc::layout::Layout::from_size_align_unchecked::h32ddbe140c1e92c8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5809 } Some("std::panicking::default_hook::h25a21008cb57516b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5708 } Some("::fmt::hee70b4cc9bad5c9c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5716 } Some("core::str::validations::next_code_point::h74631596cd1ebcee") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5857 } Some("::flush::h46ac3e4d4ebfc59d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5003 } Some("js_sys::futures::queue::Queue::new::h02288d56001ba97e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5919 } Some("core::panicking::panic_fmt::h6651313c3e2c6c2f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5138 } Some("wasm_bindgen::convert::closures::_::invoke::h3eead99c9f19c03d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5992 } Some("core::option::expect_failed::h7377ee23bee75e81") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 539 } Some(">::into::h0d1a18331b88e4e4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 879 } Some("doublets::mem::unit::store::Store::init::h1f41a73bf86d87c5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 669 } Some("linksconstants_new") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 540 } Some(">::into::h67d55816296a62c5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 316 } Some("test::types::TestDesc::padded_name::h4eb837148d4df704") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 159 } Some(" as core::fmt::Display>::fmt::h2539e3ef015eb2d6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6012 } Some("::fmt::fmt_decimal::h281f0599bd43151f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2493 } Some("wasm_bindgen_test::__rt::Context::new::hf589bb7349e4b165") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1373 } Some(" as serde_core::de::SeqAccess>::next_element_seed::hd8befef30454d9b0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5825 } Some("core::fmt::Write::write_char::h7354d8f8882ad2d2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1371 } Some(" as serde_core::de::SeqAccess>::next_element_seed::h81e5df9aa6e94cf8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 231 } Some(" as test::formatters::OutputFormatter>::write_discovery_finish::h11c429db3cfeb6de") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1955 } Some("::stringify_error::h271fe4c17ab4257c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 541 } Some(">::into::hfc8ad0f6c0fa882d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 710 } Some("platform_mem::raw_place::RawPlace::handle_fill::h3655480448297dc4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 792 } Some("core::cmp::impls::::cmp::h65ff1f5d99607fbb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1660 } Some(" as core::ops::try_trait::Try>::branch::h99ece8fe082a10f7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5981 } Some("core::str::pattern::StrSearcher::new::hedfc561af0a4e4fb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1315 } Some("core::ptr::non_null::NonNull::new_unchecked::he1ca434a562271e4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1802 } Some("alloc::collections::btree::map::IntoIter::dying_next::h60ed8a2555349ba9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1814 } Some(" as serde_core::ser::Serializer>::serialize_str::h66b9bd56534a504c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 232 } Some(" as test::formatters::OutputFormatter>::write_discovery_finish::h7534b9456d32f850") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1827 } Some("serde_core::ser::impls::::serialize::h601a31baaf746f9b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 306 } Some("core::slice::sort::shared::smallsort::bidirectional_merge::h4bbc8f76870865ae") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5847 } Some("<&std::io::stdio::Stdout as std::io::Write>::write::h0fc3500ceabfec18") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1926 } Some(">::into::h1d6336293fc03c08") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2192 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::hb0c93ab303148951") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2003 } Some("::next_match::h640998d742b326fc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2254 } Some("core::ptr::drop_in_place::h372d413ed240c47f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 300 } Some("core::hash::BuildHasher::hash_one::hbd2715a159f88c4f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2307 } Some("core::cell::Cell::take::h35c61de867f216a0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1437 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_str::h6c19f259f7894016") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2497 } Some("wasm_bindgen_test::__rt::Context::run::h0f05e07c49a0a9f4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5849 } Some("<&std::io::stdio::Stdout as std::io::Write>::write_all::hd0a2a110fa316632") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2308 } Some("core::cell::Cell::take::h9bc4380cc03a2480") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2405 } Some("core::iter::traits::iterator::Iterator::try_for_each::call::{{closure}}::had158376ab6f5c58") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2438 } Some("wasm_bindgen_test::__rt::_::__wasm_bindgen_generated___wbgtest_console_log::{{closure}}::h7fed80c0a8bfa28e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2105 } Some("once_cell::unsync::OnceCell::get_or_try_init::hf4bf560bb23b3d0b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2880 } Some("memchr::arch::all::memchr::One::rfind_raw::h0bf8da0f8f31e2fb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2440 } Some("wasm_bindgen_test::__rt::_::__wasm_bindgen_generated___wbgtest_console_info::{{closure}}::h015b9f92fbd006fe") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2442 } Some("wasm_bindgen_test::__rt::_::__wasm_bindgen_generated___wbgtest_console_warn::{{closure}}::h0ca3bb6ac5707611") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2616 } Some("core::str::iter::SplitInternal

::get_end::h7c9e4d1cd51f70d4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 139 } Some(" as core::fmt::Display>::fmt::h4a4e4170338ec400") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2444 } Some("wasm_bindgen_test::__rt::_::__wasm_bindgen_generated___wbgtest_console_debug::{{closure}}::h17e42854e45bedf2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1696 } Some(">::deserialize::MapVisitor as serde_core::de::Visitor>::visit_map::h4110c536bae42912") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1495 } Some("wasm_bindgen_test::__rt::criterion::estimate::_::::serialize::h5ad3b156960b1309") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 398 } Some("getopts::OptGroup::long_to_short::h1351d7342c15ee04") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5275 } Some("once_cell::unsync::OnceCell::get_or_try_init::hc854bc64775b1258") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2550 } Some("core::iter::adapters::peekable::Peekable::next_if::h46c648c7d6029740") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2446 } Some("wasm_bindgen_test::__rt::_::__wasm_bindgen_generated___wbgtest_console_error::{{closure}}::hcb96b9e18a3b7e85") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 313 } Some(" as core::fmt::Display>::fmt::h15f27aefc4939427") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 348 } Some("test::helpers::shuffle::shuffle_tests::h0d6fa7e1e03a3978") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1672 } Some(" as wasm_bindgen::UnwrapThrowExt>::unwrap_throw::h0338aa9a1c1652c1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2496 } Some("wasm_bindgen_test::__rt::Context::new::{{closure}}::{{closure}}::h5b1ef1e74d9bf5b1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 861 } Some(" as doublets::data::traits::Links>::update_links::h3e226014127b12ee") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1492 } Some("wasm_bindgen_test::__rt::criterion::estimate::_::::serialize::h4237169c5e982bf9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 173 } Some("test::formatters::junit::parse_class_name::h2c9bea84a1925e00") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2589 } Some("core::str::traits:: for core::ops::range::RangeInclusive>::index::h73ea765269b5fc9b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2553 } Some("core::iter::adapters::peekable::Peekable::next_if::hc4fa42cf3b1f57a3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1498 } Some("wasm_bindgen_test::__rt::criterion::estimate::_::::serialize::hb1d4ed7400487895") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 369 } Some("hashbrown::raw::RawTableInner::rehash_in_place::h815e9802b7f6bcbf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2723 } Some("serde_json::read::parse_escape::h6cb5d17973978c5b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1542 } Some("alloc::collections::btree::node::NodeRef::ascend::hf9332a19f02dffa5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2762 } Some("core::slice::::get::hdf7194c7a623fc5b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2558 } Some("core::iter::adapters::peekable::Peekable::next_if::hd5be1f14e064520f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1558 } Some("alloc::collections::btree::node::NodeRef::ascend::hf1e70afdd967e4ba") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5283 } Some("once_cell::unsync::OnceCell::set::h3433fca44de4dee5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1799 } Some("alloc::collections::btree::map::BTreeMap::entry::he9ba8db6b99710b3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2559 } Some("core::iter::adapters::peekable::Peekable::next_if::h9113eb280bdab981") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3020 } Some("::fmt::h0e817eb9bb1c23f6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2349 } Some("::deserialize::__FieldVisitor as serde_core::de::Visitor>::visit_str::h1243414bca721aa0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1562 } Some("alloc::collections::btree::node::NodeRef::ascend::hc8e21789970e370d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2462 } Some("wasm_bindgen_test::__rt::State::print_failure::h40a6ca37f5caa70e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5132 } Some("wasm_bindgen::convert::closures::_::invoke::h185dc47783e7c162") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2812 } Some("::forward_unchecked::hf93e5d6c71d693d0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1683 } Some("wasm_bindgen_test::__rt::criterion::_::::serialize::h5fcc001190ee736c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2560 } Some("core::iter::adapters::peekable::Peekable::next_if::h3e20818e4e1c87f5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1557 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::Edge>::insert::hafb9d4da9a1ff98a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2851 } Some("::backward_unchecked::h18e487d419256625") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5174 } Some("wasm_bindgen::convert::closures::_::invoke::hf19faf5dfd47e40f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 162 } Some(" as test::formatters::OutputFormatter>::write_discovery_finish::h0806eeb36676f291") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5540 } Some("__wbindgen_realloc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1128 } Some("doublets_web::UnitedLinks::each::{{closure}}::h482d8a7c3ed7ede3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1379 } Some(" as serde_core::de::SeqAccess>::next_element_seed::h313b6202fe1f8eae") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 302 } Some("core::slice::sort::shared::pivot::median3_rec::h32fe3ba1afec1486") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1369 } Some(" as serde_core::de::SeqAccess>::next_element_seed::h2a8967c712c0f242") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 245 } Some("std::sync::mpmc::array::Channel::send::{{closure}}::h9d68e25442ecaea8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4530 } Some("wasm_bindgen::closure::ScopedClosure::wrap_maybe_aborting::ha6b11106927dccd4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 568 } Some("doublets_web::UnitedLinks::delete::h00aa7a4445d27eef") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 163 } Some(" as test::formatters::OutputFormatter>::write_discovery_finish::h18a78c4ba884b098") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4635 } Some("core::cell::Cell::take::h1d628d6f9bcbddd9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1548 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::KV>::split_leaf_data::h34f60b50eb9a8599") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 284 } Some("core::ptr::drop_in_place>::h2912c6891003fbce") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4636 } Some("core::cell::Cell::take::h27765d3894841aa7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5764 } Some("<&std::io::stdio::Stderr as std::io::Write>::write_fmt::hb88020ac45491cb2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1549 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::KV>::split_leaf_data::h7af14bb0637d3cae") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4637 } Some("core::cell::Cell::take::h3010caad4905623a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5771 } Some("<&std::io::stdio::Stdout as std::io::Write>::write_fmt::h7ff45d3b91107c4b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4638 } Some("core::cell::Cell::take::hcc70c320e598cde2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5148 } Some(">::into::h69e2c44e4cbd2b05") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 305 } Some("core::slice::sort::shared::smallsort::sort8_stable::h293e3da458aad54c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 250 } Some("std::sync::mpmc::list::Channel::recv::{{closure}}::h89f7a6c30b757124") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5156 } Some(">::into::h91327d9dad8eb7a9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4645 } Some("core::slice::index::range::h4f82ae626d741afa") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5228 } Some("core::task::wake::Context::from_waker::h98bd262e6eb60282") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2794 } Some("memchr::arch::all::memchr::Two::find_raw::ha13bed60db91e59e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2938 } Some("zmij::to_bcd8::h4cc2342df850d9e0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5485 } Some("core::slice::::get_mut::h2fd20a30101c1460") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5816 } Some("<&T as core::fmt::Debug>::fmt::h3853064e96caba58") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5823 } Some("::write_all::h917f15af3d2e6187") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1353 } Some(" as serde_core::de::MapAccess>::next_key_seed::h8fd6cc455963893c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5859 } Some("::fmt::h84176c61e98a665a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5970 } Some("core::num::from_ascii_radix_panic::h1ce0a06964ce8d15") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 845 } Some(" as doublets::data::traits::Links>::count_links::hdfff5f7a53e6273d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1511 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::visit_seq::hb20f903776b8eb80") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1355 } Some(" as serde_core::de::MapAccess>::next_key_seed::hde76e2965333fe7b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 142 } Some("core::panicking::assert_failed::hc3ac836df7630092") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 267 } Some("core::ptr::drop_in_place::{{closure}}>::h6d3604429b42d698") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 915 } Some("doublets::mem::resize_mem::hb4aa89e26ea29c6c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 410 } Some("<&T as core::fmt::Display>::fmt::h28dbe44d6be20f05") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1412 } Some("serde_json::de::Deserializer::deserialize_number::h818917d144fb0e84") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 422 } Some("<&T as core::fmt::Debug>::fmt::h4642bb10278633a3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 424 } Some("alloc::vec::Vec::from_raw_parts::hddc7435eaeb804fa") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 572 } Some("doublets_web::LinksConstants::via_only_external::h832456b641411c29") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2730 } Some("serde_json::read::decode_four_hex_digits::hbed09fc6e9250fe1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 709 } Some("::fmt::hb987ac02bfae5de1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1357 } Some(" as serde_core::de::MapAccess>::next_key_seed::h9e2eb122a76aab4c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2464 } Some("wasm_bindgen_test::__rt::State::print_results::h42c5408b088e227c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 805 } Some(" as platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree>::set_left::h1007f4337b7ae770") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 330 } Some("test::cli::optgroups::hc7c877517f45af62") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1359 } Some(" as serde_core::de::MapAccess>::next_key_seed::h547b1a2dc1e4bc49") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 806 } Some(" as platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree>::set_right::hb9e671911ac1753c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 166 } Some(" as test::formatters::OutputFormatter>::write_result::h14f32e417bb7be7b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 807 } Some(" as platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree>::set_size::h68721d850c66ecb2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 668 } Some("linksconstants_full_new") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1361 } Some(" as serde_core::de::MapAccess>::next_key_seed::h795bebb6661b6adf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 239 } Some("::next_match::h4dfa56fc99ed52ca") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 924 } Some(" as core::default::Default>::default::he582dadcfac3a512") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2801 } Some("memchr::memchr::memrchr::hcf88a4e76e5fd12c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 933 } Some(" as platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree>::set_left::hdd8cbdb5ea413870") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 136 } Some(" as test::formatters::OutputFormatter>::write_result::h7f3e06afacba7b04") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5433 } Some(" as wasm_bindgen::UnwrapThrowExt>::unwrap_throw::h1aef38585174e12c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2360 } Some("wasm_bindgen_test::__rt::node::_::__wasm_bindgen_generated___wbgtest_coverage_path::{{closure}}::h6fa93299562476d1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 934 } Some(" as platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree>::set_right::h39d62763ad8b8b51") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5795 } Some("std::time::SystemTime::duration_since::hde049a137b32a14f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 935 } Some(" as platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree>::set_size::hcf93d5a737f250f3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5894 } Some("alloc::fmt::format::format_inner::h17065fade03a5f8e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1062 } Some("::write_char::h43924259f36ad053") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 143 } Some(" as test::formatters::OutputFormatter>::write_result::h8e7f1482d7554177") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2666 } Some("serde_json::error::parse_line_col::h687ac3ba362a5275") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1946 } Some(" as wasm_bindgen::UnwrapThrowExt>::unwrap_throw::h8443833faf8d58be") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1167 } Some("<&T as core::fmt::Debug>::fmt::ha1bf16da4db0166d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1180 } Some(" as platform_trees::lists::linked_list::LinkedList>::set_previous::h22d4062dc0c3fc90") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1183 } Some(" as platform_trees::lists::linked_list::LinkedList>::set_next::hc2f786ccc43b578f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1089 } Some("alloc::rc::Rc::new::h58138dbcd8ecea0e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2683 } Some("::fmt::h9490365706f2b9f0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1198 } Some("<&T as core::fmt::Display>::fmt::h6e0c13d5fbb3930d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 341 } Some("test::stats::Summary::new::h5dd691c5bb355614") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1213 } Some("<[T; L] as platform_data::query::ToQuery>::to_query::h1605cf3f621dbd9d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1214 } Some("<[T; L] as platform_data::query::ToQuery>::to_query::h25f25e694c95bbb8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6026 } Some("compiler_builtins::math::libm_math::fmod::fmod::hdd96ffb56df7b981") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1215 } Some("<[T; L] as platform_data::query::ToQuery>::to_query::hc1bac36358578df0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1235 } Some("<&T as core::fmt::Display>::fmt::hd7ac2a249355365f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5911 } Some("core::fmt::Formatter::pad_integral::h79733d96345228a4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5976 } Some("core::num::flt2dec::strategy::dragon::mul_pow10::h29c922d5b323c1a1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1238 } Some("<&T as core::fmt::Display>::fmt::h81672967232476b3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1279 } Some("::fmt::hc9b2664a4ffa1bc4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1280 } Some("::write_char::h5f144d7d102a12e2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2606 } Some("alloc::raw_vec::RawVecInner::finish_grow::hfbd5b622891dba5b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1289 } Some("<&T as core::fmt::Debug>::fmt::h1571bef156a816b0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 339 } Some("test::bench::fmt_thousands_sep::hf599e8878ba4e5f7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1291 } Some("<&T as core::fmt::Debug>::fmt::h6ec6cd9bfd5b41ba") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5916 } Some("::fmt::h33079d1ee4561b89") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2152 } Some("alloc::rc::Rc::new::hfb8ff06b31bd7e93") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1786 } Some("serde_json::ser::Formatter::write_char_escape::h2183be442ab5c6df") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 691 } Some("platform_mem::raw_mem::uninit::fill::hf991bdc4a3e05dc4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 64 } Some("wasm_bindgen_test::__rt::__wbg_test_invoke::h0514958e4b1108f2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1559 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::Edge>::insert::hf4b7edcf9c8a4ed2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 567 } Some("doublets_web::UnitedLinks::create::h9642bbd73d1846e6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 107 } Some(" as wasm_bindgen::UnwrapThrowExt>::unwrap_throw::h71d2924562be5688") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2627 } Some("alloc::raw_vec::RawVecInner::finish_grow::hf4588d03d26e0b93") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5930 } Some("core::fmt::Formatter::pad_formatted_parts::hba4ee7ec573a5615") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 380 } Some("alloc::str::join_generic_copy::hcc5aad49c05721d8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1078 } Some("core::ptr::copy_nonoverlapping::precondition_check::h7c0e8419a463c0d8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1302 } Some("::fmt::hbfc82a1f884f6a29") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1365 } Some(" as serde_core::de::SeqAccess>::next_element_seed::hd4e04ece419f9039") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2728 } Some("serde_json::read::push_wtf8_codepoint::h7f44eaf2958c8ddb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5526 } Some("alloc::raw_vec::RawVecInner::try_reserve_exact::h68e76f74fb553f28") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1993 } Some("core::ptr::copy_nonoverlapping::precondition_check::h516537a8d2e2700a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2931 } Some("zmij::to_decimal_fast::h2bc8b4a511e59cd4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1292 } Some("<&T as core::fmt::Display>::fmt::hb037b16ae22a9c5c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1455 } Some("wasm_bindgen::convert::slices::>::none::h79d1d156743eac99") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2575 } Some("core::ptr::copy_nonoverlapping::precondition_check::h234e9cd74e5337ec") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1494 } Some("wasm_bindgen_test::__rt::criterion::estimate::_::::deserialize::hbd3ccc89fd6aa113") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5725 } Some("alloc::raw_vec::RawVecInner::finish_grow::h56369c4ff9f7d418") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1497 } Some("wasm_bindgen_test::__rt::criterion::estimate::_::::deserialize::hca69cc3db371992b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2753 } Some("core::ptr::copy_nonoverlapping::precondition_check::h0cfc096ea8981808") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1499 } Some("wasm_bindgen_test::__rt::criterion::estimate::_::::deserialize::h2293e763cfb0347a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1501 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::expecting::he54402790ef23e6d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2856 } Some("core::ptr::copy_nonoverlapping::precondition_check::h4222d4bf60c79092") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5945 } Some("core::fmt::float::float_to_decimal_common_shortest::h8a36f199b489b4f9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5778 } Some("std::sys::sync::once::no_threads::Once::call::he60262da18d264df") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1504 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::expecting::h502980046989e2fe") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 285 } Some("core::ptr::drop_in_place>::h50335bdd639ce577") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1509 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::expecting::hc37d223a1e4f6e46") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2913 } Some("core::ptr::copy_nonoverlapping::precondition_check::h9295aca8903f9daa") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1396 } Some("serde_json::de::Deserializer::ignore_integer::h9e5c9ad73a6d9a6e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 167 } Some("::clone::h4eb0badbf3ff785d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 266 } Some("core::ptr::drop_in_place>::h2447aea380799364") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 454 } Some("core::option::Option::map_or::h7d7259e052f3dacb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 246 } Some("std::sync::mpmc::zero::Channel::send::{{closure}}::h174393c24bbcc4a5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5890 } Some("alloc::string::String::from_utf8_lossy::h782e772ad142467d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1577 } Some(" as serde_core::de::Deserializer>::deserialize_any::h1a0648ee11e3d151") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2601 } Some("alloc::alloc::Global::grow_impl_runtime::he74505b9e4f1f74f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4630 } Some("core::ptr::copy_nonoverlapping::precondition_check::h174ea2d4f608ee89") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1578 } Some(" as serde_core::de::Deserializer>::deserialize_any::h20e5a13b8536edb4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1579 } Some(" as serde_core::de::Deserializer>::deserialize_any::h3555a0afab52d22c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2767 } Some("alloc::alloc::Global::grow_impl_runtime::h4e11aebeb19333cd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1580 } Some(" as serde_core::de::Deserializer>::deserialize_any::h97ed8429a807d246") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4650 } Some("alloc::collections::vec_deque::VecDeque::slice_ranges::hecd6c6da8d83ea33") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 211 } Some(" as test::formatters::OutputFormatter>::write_result::h51576783103de78e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5500 } Some("core::ptr::copy_nonoverlapping::precondition_check::h2143b0d69d86850f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1581 } Some(" as serde_core::de::Deserializer>::deserialize_any::h9e6728df9afd2c8a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1438 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_str::ha6742e3ae4d21109") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5736 } Some("dlmalloc::dlmalloc::Dlmalloc::memalign::h4d574c3a3414c418") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5697 } Some("core::ptr::copy_nonoverlapping::precondition_check::h41bfff32362d865b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1582 } Some(" as serde_core::de::Deserializer>::deserialize_any::hdbfe014160d44db7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1583 } Some(" as serde_core::de::Deserializer>::deserialize_any::he6d110ec7b3c5926") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1524 } Some("js_sys::futures::future_to_promise::{{closure}}::{{closure}}::hea0c8bd2a7029e84") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1604 } Some("<&T as core::fmt::Display>::fmt::hb49e63574579eb31") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1618 } Some("::write_char::hdc055889e40400fc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 180 } Some(" as test::formatters::OutputFormatter>::write_merged_doctests_times::h5c7479fe29b95e1f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1685 } Some("wasm_bindgen_test::__rt::criterion::_::::deserialize::hf82c111accdca703") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5912 } Some("<&T as core::fmt::Debug>::fmt::h862d5dab41016e4e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5951 } Some("::write_str::hca0c70a1f76e04ee") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1687 } Some("wasm_bindgen_test::__rt::criterion::_::::deserialize::ha166791c6f0d8e88") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1721 } Some("alloc::collections::btree::navigate::LazyLeafRange::next_unchecked::h7e7cf8a6bc481c7d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 215 } Some(" as test::formatters::OutputFormatter>::write_result::hb3049cb776a807c0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5720 } Some("alloc::alloc::Global::grow_impl_runtime::h321a57a272e27582") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5972 } Some("core::num::bignum::Big32x40::mul_pow2::he540d63cbba9f9ce") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1689 } Some(">::deserialize::VecVisitor as serde_core::de::Visitor>::expecting::hbf47703384327e2a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1407 } Some("serde_json::de::Deserializer::ignore_exponent::h29f0d7d56bbe2aff") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1893 } Some("wasm_bindgen_test::__rt::Formatter::log_test::h2e2a01dcd6fa5330") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2743 } Some("serde_json::read::SliceRead::parse_str_bytes::he1e5b7a96df31b81") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1691 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::expecting::h77ee7a38b13cf01b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1695 } Some(">::deserialize::MapVisitor as serde_core::de::Visitor>::expecting::h1cc3c4a04413aedd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 394 } Some("getopts::Options::usage::hc6944437a24d7d8f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 829 } Some(" as doublets::mem::traits::LinksTree>::count_usages::hbdb2603c48bedfa5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1895 } Some("wasm_bindgen_test::__rt::Formatter::log_test::hae4bc5957280a4d2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1700 } Some("::deserialize::__FieldVisitor as serde_core::de::Visitor>::expecting::h37615fd32b32a18b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1728 } Some("serde_json::ser::Formatter::write_null::h90db36624ee1e0cf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 957 } Some(" as doublets::mem::traits::LinksTree>::count_usages::h734717b78da3cdc4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1431 } Some(" as serde_core::de::SeqAccess>::next_element_seed::has_next_element::h89da70ae5a176943") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1730 } Some("serde_json::ser::Formatter::begin_object::he724a5626e8ca1df") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1382 } Some("serde_json::de::from_trait::hb74218a21901b4c8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2143 } Some("core::slice::memchr::memchr::h607bb1d7bb9b9c91") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5740 } Some("dlmalloc::dlmalloc::Dlmalloc::free::ha98daa4c6dd8ad86") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1731 } Some("serde_json::ser::Formatter::end_object::hb975ee2138e331ed") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1464 } Some("alloc::vec::Vec::pop::h093b4fb8d3e7bf12") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6023 } Some("compiler_builtins::int::specialized_div_rem::u128_div_rem::h8d9ba2662c058ede") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1733 } Some("serde_json::ser::Formatter::begin_array::hc7b6d63457ab5c92") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2383 } Some("wasm_bindgen_test::__rt::Formatter::log_test::hf4b4b40aa0168321") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1110 } Some("alloc::rc::Rc::try_unwrap::hc026091a42d5c60a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3015 } Some("core::slice::memchr::memchr::h834890c4f85a5b04") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 353 } Some("hashbrown::map::HashMap::remove::h4f7941f79147628f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1566 } Some("alloc::collections::btree::navigate::,alloc::collections::btree::node::marker::KV>>::next_leaf_edge::h9193dd47d5d98abd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1329 } Some("serde_core::de::MapAccess::next_entry_seed::h3bb4b9cfd5b9fff5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 537 } Some("wasm_bindgen::__rt::WasmRefCell::new::h463fba742de534f5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1409 } Some("serde_json::de::Deserializer::parse_exponent_overflow::h0316de720f40b087") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1734 } Some("serde_json::ser::Formatter::end_array::hf8efc4d09244627a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5973 } Some("core::num::flt2dec::strategy::grisu::format_exact_opt::possibly_round::h6d2a0d3ecc48ff3d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1510 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::visit_map::hfe989eb539eae66e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1756 } Some("serde_core::ser::Serializer::collect_seq::{{closure}}::h49e861e8722fdd65") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1780 } Some("serde_json::ser::Formatter::begin_string::h9c3cf203bc3156a1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6025 } Some("compiler_builtins::math::libm_math::support::modular::linear_mul_reduction::hc9e9016b89de2915") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1440 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_unit::h7681e75161f1c017") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1782 } Some("serde_json::ser::Formatter::end_string::h97a02a1209063ead") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 395 } Some("getopts::Options::optopt::h96994add22a3146a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2702 } Some("core::char::methods::::to_digit::he39524d61a4f2e33") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1567 } Some("alloc::collections::btree::navigate::,alloc::collections::btree::node::marker::KV>>::next_leaf_edge::hb881e1584a85c752") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 66 } Some("wasm_bindgen_test::__rt::Context::execute::h4698260b3e14f43e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5135 } Some("wasm_bindgen::convert::closures::_::invoke::h2dacf13e1358230b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1794 } Some("serde_json::ser::Formatter::begin_object_value::hbc5e5229ca4bae93") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 397 } Some("getopts::Options::optmulti::hf40659164b5ee392") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5902 } Some("core::fmt::write::h31474238f266a14a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5137 } Some("wasm_bindgen::convert::closures::_::invoke::h36153877478445c3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 752 } Some(" as core::fmt::Display>::fmt::h13cf7b0ccc0d8335") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5139 } Some("wasm_bindgen::convert::closures::_::invoke::h43c5055a4aad61da") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 356 } Some("test::console::list_tests_console::h0bc75c9d5b2996c0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5920 } Some("core::str::converts::from_utf8::h98d2c0a7c1a2b83e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5146 } Some("wasm_bindgen::convert::closures::_::invoke::h744a29ca84382944") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 337 } Some("test::cli::get_test_threads::h1aeeaa0e248cb364") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 146 } Some(" as test::formatters::OutputFormatter>::write_timeout::h2ae4fb5936b50691") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5149 } Some("wasm_bindgen::convert::closures::_::invoke::h7c1817c833ee17d2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5150 } Some("wasm_bindgen::convert::closures::_::invoke::h7fe00b21218011d2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1902 } Some(" as core::iter::traits::iterator::Iterator>::next::h3f0e3f1e31186159") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 148 } Some(" as test::formatters::OutputFormatter>::write_timeout::hec17045fbc8e4904") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2785 } Some("core::num::::from_ascii_radix::h46bbd264ceb72206") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1908 } Some("core::option::Option::take::hd53e774eb80c1599") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 174 } Some("test::formatters::junit::str_to_cdata::h59dc2cb477ad6a77") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 153 } Some(" as test::formatters::OutputFormatter>::write_test_start::h7c0409b34bc4326b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5964 } Some("core::fmt::Formatter::write_formatted_parts::h6b7de073ecd0899c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5151 } Some("wasm_bindgen::convert::closures::_::invoke::h80f01efe87aa88b6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1569 } Some("alloc::collections::btree::navigate::,alloc::collections::btree::node::marker::Edge>>::deallocating_next::hc0c3fb4d94263fb6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2066 } Some("::fmt::hfee502c443b72c78") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5153 } Some("wasm_bindgen::convert::closures::_::invoke::h8c74fbfdaa16cf07") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2610 } Some("alloc::raw_vec::RawVecInner::try_allocate_in::hdaec316821775b1a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2096 } Some("once_cell::unsync::OnceCell::get_or_init::hdfc29c4fa3c7a549") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 281 } Some("core::ptr::drop_in_place::h979857cb9df97ab2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5154 } Some("wasm_bindgen::convert::closures::_::invoke::h99feea26b3f455c0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2628 } Some("alloc::raw_vec::RawVecInner::try_allocate_in::h0cf80e65cafb1c45") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 154 } Some(" as test::formatters::OutputFormatter>::write_test_start::h8547ff2977a21950") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2695 } Some("core::str::validations::next_code_point_reverse::hb7b9273e4657de3c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5160 } Some("wasm_bindgen::convert::closures::_::invoke::ha5710888197a1c33") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5729 } Some("alloc::raw_vec::RawVecInner::try_allocate_in::h93b557d7811b1869") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2098 } Some("once_cell::unsync::OnceCell::get_or_init::h472a18f523092ed8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1350 } Some(" as serde_core::de::MapAccess>::next_key_seed::h2c5b3b365b3e6101") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2744 } Some("serde_json::read::SliceRead::position_of_index::h08a404e4ebf43aed") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1411 } Some("serde_json::de::Deserializer::peek_invalid_type::h3024f0dce0eb8e27") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 297 } Some("core::str::::trim_matches::hfc0b5c2ca1a74fe0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5165 } Some("wasm_bindgen::convert::closures::_::invoke::hbeec7bcca96e8962") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5169 } Some("wasm_bindgen::convert::closures::_::invoke::hd363cd256476f5e2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2193 } Some("core::ops::function::FnOnce::call_once::h00c717a8ca6c918c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1377 } Some(" as serde_core::de::SeqAccess>::next_element_seed::h630c1f7327706b1a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2391 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::expecting::hdff760024330d20f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1363 } Some(" as serde_core::de::SeqAccess>::next_element_seed::hcae535492ec0f5f8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2451 } Some("wasm_bindgen_test::__rt::record::hc985fa6636b82760") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2351 } Some("wasm_bindgen_test::__rt::criterion::baseline::_::::serialize::hc710505458365529") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1375 } Some(" as serde_core::de::SeqAccess>::next_element_seed::h7f6fd8f80a8f6c32") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2453 } Some("wasm_bindgen_test::__rt::record::he754a189df202546") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1622 } Some("alloc::collections::btree::map::entry::VacantEntry::insert_entry::h3867daa6c048afd1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1403 } Some("serde_json::de::Deserializer::f64_from_parts::h2144c9e19e192cb3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2455 } Some("wasm_bindgen_test::__rt::record::h5c93889d792a4e50") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 238 } Some(" as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter::heda68daddb95ec04") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2740 } Some("serde_json::read::SliceRead::skip_to_escape::hee9680b2556044af") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5170 } Some("wasm_bindgen::convert::closures::_::invoke::he1aa7a3c5397b556") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2457 } Some("wasm_bindgen_test::__rt::record::ha46607781d30a98d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 387 } Some("getopts::Name::to_string::hdc5512bfcac5a4d3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 151 } Some(" as test::formatters::OutputFormatter>::write_run_finish::h39e8a66f130cfac3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5176 } Some("wasm_bindgen::convert::closures::_::invoke::hf447a2bf89c17f58") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2459 } Some("wasm_bindgen_test::__rt::record::he5f0055205077155") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5965 } Some("core::fmt::Formatter::debug_tuple_field1_finish::hf7bab4a1f0b45def") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2129 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::ha105adf2cf5c377b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2103 } Some("once_cell::unsync::OnceCell::try_insert::hfd97ee2b7c210f27") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2466 } Some("wasm_bindgen_test::__rt::Timer::elapsed::h5effc66bd8b23c2e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 296 } Some("core::ptr::drop_in_place>::h9bb380a8bf818edc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 152 } Some(" as test::formatters::OutputFormatter>::write_run_finish::h3feb5af7ec1bc593") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2502 } Some("<&T as core::fmt::Display>::fmt::h51de3a373a74dcb3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2708 } Some("::fmt::hee4ee092142259fc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2709 } Some("::write_char::h68eb6cb7b7818160") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 563 } Some("doublets_web::UnitedLinks::new::h5631870346fa3597") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1816 } Some(" as core::ops::drop::Drop>::drop::h74a9d653103f1853") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2786 } Some("core::num::::from_str::h65f43b319ee83ecd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2797 } Some("memchr::memchr::memchr_iter::h1332174badf1440c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1400 } Some("serde_json::de::Deserializer::parse_exponent::h14090865a78fb63f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 590 } Some("::into_abi::h39f239e30a386c01") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5904 } Some("core::char::methods::::escape_debug_ext::h697d2991ee43dd73") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2818 } Some("core::ptr::drop_in_place,serde_json::error::Error>>::hd8aec781e7d837aa") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 323 } Some("test::console::get_formatter::hf2c6432538f95473") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 304 } Some("core::slice::sort::shared::smallsort::sort4_stable::h1ea4bb869a783527") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 391 } Some("getopts::Matches::opt_str::h77984ed45ebf3398") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2827 } Some("core::ptr::drop_in_place>::hc954f8245c171370") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1123 } Some("js_sys::Function::call1::h1b9b468fb2da9184") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 321 } Some("test::convert_benchmarks_to_tests::h3073834076d43eb8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 607 } Some("__wbg_get_linksconstants_external_range") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 299 } Some(" as core::hash::Hasher>::write::h025d5db785fe8302") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2843 } Some("::into_iter::hd243e20ed31ee62e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2072 } Some("js_sys::Function::call1::h90b5821a67bac725") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 771 } Some("core::result::Result::map_err::h1fa182af4b1433c5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 99 } Some("::next::hb80f93adcf150713") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2886 } Some("<&T as core::fmt::Debug>::fmt::hc0b7b937656f9f25") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 589 } Some("::from_abi::h904af161097c34ed") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6002 } Some("core::panicking::assert_failed_inner::h7a49bbc1d2417104") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1537 } Some("alloc::collections::btree::node::NodeRef::push::he68a274634735e0d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2080 } Some("js_sys::Function::call1::h03741a2abaffffbc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1441 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_option::h3f5116d2674c5b1b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1435 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_map::h66848e1f9a8e5832") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 315 } Some("::next_match::hec4fe28072ff4c9e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3156 } Some("js_sys::Function::call1::h53ddbf76c165925e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2768 } Some("alloc::alloc::Global::shrink_impl_runtime::h609ed1982ae0ea7b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 393 } Some("getopts::Options::usage_items::hfa0ba417b9bc9679") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1718 } Some("alloc::collections::btree::navigate::LazyLeafRange::init_front::h8785f75cc75fa550") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2002 } Some("::next::h342d5f508d05edc4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5755 } Some("std::io::error::::fmt::hfb2347e593b03b1f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1719 } Some("alloc::collections::btree::navigate::LazyLeafRange::init_front::hb8526e26dbb3a499") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5966 } Some("core::fmt::Formatter::debug_tuple_field2_finish::h7744194aa8215896") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3026 } Some("::next::hd81ba77fe72f9afe") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1564 } Some("alloc::collections::btree::search::>::find_key_index::ha599b0f135b4f64f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5518 } Some("alloc::alloc::Global::shrink_impl_runtime::h7e167214daa9f624") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5922 } Some("core::fmt::num::imp::::_fmt_inner::h21f77f4c8510767c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 237 } Some(" as alloc::vec::spec_from_iter_nested::SpecFromIterNested>::from_iter::h1b5ef44954eeb030") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 222 } Some(" as test::formatters::OutputFormatter>::write_run_finish::h84ea824f855421d8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5522 } Some("alloc::raw_vec::RawVecInner::grow_exact::h51f29155408254c3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 670 } Some("linksconstants_via_external") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 244 } Some("std::sync::mpmc::waker::SyncWaker::notify::h034388f80f214699") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2887 } Some("<() as core::fmt::Debug>::fmt::hccc3955855671a75") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2925 } Some("zmij::FloatTraits::get_sig::h605ad82b8c614184") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 672 } Some("linksconstants_via_ranges") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2959 } Some("::deserialize::PrimitiveVisitor as serde_core::de::Visitor>::expecting::h36d8a152b147842c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2135 } Some("core::str::::lines::h0f7fe8e347b9a181") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1442 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_option::hf4728c262343036f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2961 } Some("<&T as core::fmt::Display>::fmt::hbf34786bfedbcb2b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3025 } Some("::expecting::heeae69858bab5c11") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 184 } Some("test::formatters::terse::TerseFormatter::write_test_name::h13e0cd1f37efd7e6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5742 } Some("dlmalloc::dlmalloc::Dlmalloc::unlink_chunk::h16ef10954c05020c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3027 } Some("::expecting::h1f97f88df91cfb2a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 224 } Some(" as test::formatters::OutputFormatter>::write_run_finish::he586be1be04d68ce") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4806 } Some("core::ops::function::FnOnce::call_once::h461f69cc0110eb41") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5257 } Some("once_cell::unsync::OnceCell::get_or_init::h09b451d98b2c0c00") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 189 } Some("test::formatters::terse::TerseFormatter::write_test_name::h018c75d0f063d712") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2635 } Some("alloc::collections::btree::node::slice_insert::hdcb42e0decf84ea0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5259 } Some("once_cell::unsync::OnceCell::get_or_init::ha145fe6caffe351b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5260 } Some("once_cell::unsync::OnceCell::get_or_init::h924e322ba03264d9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 212 } Some("test::formatters::pretty::PrettyFormatter::write_test_name::h0fb064669adb8dd7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5261 } Some("once_cell::unsync::OnceCell::get_or_init::h0edee005d0e6f091") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1418 } Some(" as serde_core::de::MapAccess>::next_key_seed::has_next_key::h7e67c68c13d2d43c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1761 } Some(" as serde_core::ser::SerializeMap>::serialize_key::ha9fe3244b784c6fa") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5484 } Some("core::result::Result::is_err::heaa0bf067a7d670d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 216 } Some("test::formatters::pretty::PrettyFormatter::write_test_name::h4130d0b7e21d94b1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5487 } Some("<&T as core::fmt::Debug>::fmt::h739913a965f705eb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5677 } Some("alloc::vec::Vec::from_raw_parts::h3631a9beef475aa8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 666 } Some("link_new") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 157 } Some(" as test::formatters::OutputFormatter>::write_test_discovered::h760747a75a9c1bff") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1565 } Some("alloc::collections::btree::navigate::,alloc::collections::btree::node::marker::Edge>>::next_kv::hfbdcb786e3f87405") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4972 } Some("alloc::rc::Rc::new::hc7d9cddeb3fbda34") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1414 } Some("serde_json::de::Deserializer::end_map::hbfcc547b4e02e156") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1532 } Some("alloc::collections::btree::node::NodeRef::push_with_handle::h0a0f54c9cab4bc89") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 161 } Some(" as test::formatters::OutputFormatter>::write_test_discovered::hef4efd2efa80a7fc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 252 } Some("std::sync::mpmc::zero::Channel::disconnect::h4bc807bd777cfd44") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 389 } Some("getopts::find_opt::hbb9d4de140ffe023") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 320 } Some("test::test_main::hea581572c405f54a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5917 } Some("core::fmt::num::imp::::_fmt_inner::he63902c806bd0202") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1404 } Some("serde_json::de::Deserializer::parse_integer::hfe44133055040b2d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1720 } Some("alloc::collections::btree::navigate::LazyLeafRange::take_front::h3d2bd65a6fece9ab") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 828 } Some("doublets::mem::unit::generic::targets_recursionless_size_balanced_tree::each_usages_core::h40b1af8b8dd29863") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1649 } Some(" as core::ops::try_trait::Try>::branch::h36c7e1d74af53db7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5914 } Some("core::fmt::Formatter::pad::h950d3375a7ef2727") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5679 } Some("alloc::vec::Vec::from_raw_parts::he1abb56436463b5c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5856 } Some("::write::h16ce720ab35d31e7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5766 } Some("core::panicking::assert_failed::ha546c957c0b066a0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1436 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_seq::h0498d5c1d89007fd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2620 } Some("zmij::Buffer::format_finite::hd2cfe472b26a399f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5869 } Some("::fmt::he70713942f8152e4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 279 } Some("core::ptr::drop_in_place::ha1836f0626a9670a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6013 } Some("::fmt::fmt_decimal::{{closure}}::h9435ade04a2f43e5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2662 } Some("::next_back::hcdd24b3627d7ed43") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 609 } Some("__wbg_get_linksconstants_internal_range") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2629 } Some("alloc::raw_vec::RawVecInner::shrink_unchecked::h228f9299f49b6ec6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5962 } Some("core::fmt::Formatter::pad_integral::write_prefix::hca46ac35d6da67d6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5266 } Some("once_cell::unsync::OnceCell::try_insert::h0122be9a0f58c8b1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 773 } Some("core::result::Result::map_err::h50c85d18843ce37d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 261 } Some("test::test_main_with_exit_callback::{{closure}}::h35290c0e614a1732") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5968 } Some("core::panicking::assert_failed::h20e95b5c65f6c45e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 774 } Some("core::result::Result::map_err::hc381c8bc8b41b771") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5268 } Some("once_cell::unsync::OnceCell::try_insert::h20e604fc381b962a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 775 } Some("core::result::Result::map_err::hc6aa0db5d3d0e0d1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2643 } Some("core::str::pattern::TwoWaySearcher::next_back::h0e05350160d87db4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 469 } Some(" as core::clone::Clone>::clone::h9e97e279bb4e0690") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 818 } Some("platform_trees::trees::iterative_size_balanced_tree::IterativeSizeBalancedTree::attach::h99ec42d71f1372be") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5523 } Some("alloc::raw_vec::RawVecInner::shrink_unchecked::h43c9eb7ef872fca5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5862 } Some(" as core::fmt::Write>::write_str::h2565d317dce5ddac") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5975 } Some("core::panicking::assert_failed::hf8fb5ffa21de4803") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6003 } Some("core::panicking::assert_failed::h38bd6ad440558afd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 164 } Some(" as test::formatters::OutputFormatter>::write_merged_doctests_times::h43cbf826de979a5f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 679 } Some("unitedlinks_update") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6024 } Some("__udivti3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1555 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::Edge>::insert_fit::h12e0659afa10b501") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 946 } Some("platform_trees::trees::iterative_size_balanced_tree::IterativeSizeBalancedTree::attach::ha94f5c146cb71a19") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 165 } Some(" as test::formatters::OutputFormatter>::write_merged_doctests_times::h4560573a551db474") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6029 } Some("__umodti3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2364 } Some("wasm_bindgen_test::__rt::node::NodeError::to_string::h1fd964e3c5451b50") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1528 } Some("::size_hint::haea33c5aaf0a1118") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2647 } Some("core::str::pattern::TwoWaySearcher::next_back::hba346e5af06b47ca") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 331 } Some("alloc::vec::Vec::extend_trusted::he637e56218dae5d6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2713 } Some("::fmt::hdcb55444a2fda596") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 74 } Some("core::pin::Pin<&mut T>::map_unchecked_mut::h95346df773f37693") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2111 } Some(" as core::iter::traits::iterator::Iterator>::next::had59d6fe6ee18a66") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2935 } Some("zmij::do_compute_exp_shift::hedc085a5324358c6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 431 } Some("platform_num::imp::LinkReference::from_byte::h9fd4acc7958a478b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2941 } Some("zmij::write_significand::hece44e36f1d9c6b0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5282 } Some("once_cell::unsync::OnceCell::set::h4b217937f18e27cf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 272 } Some("alloc::sync::Arc::drop_slow::hec150238ad109ce6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5285 } Some("once_cell::unsync::OnceCell::set::h05f269112bea7516") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2998 } Some("core::str::pattern::TwoWaySearcher::next::h2ee28c86f008025d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1109 } Some("alloc::rc::Rc::try_unwrap::h77fe71d9eea13c61") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1111 } Some("alloc::rc::Rc::try_unwrap::heb3a0609b9f45a1d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2675 } Some("alloc::string::String::truncate::h859420a48b09a39a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1466 } Some("alloc::vec::Vec::push_mut::h9eee86a36f21d4e1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3002 } Some("core::str::pattern::TwoWaySearcher::next::h47d2799d02989e30") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1415 } Some("serde_json::de::Deserializer::end_seq::h809e8969d72e94f0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5158 } Some("wasm_bindgen::convert::closures::_::invoke::h9c5fdd87d10b30f5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2995 } Some("::is_contained_in::h4b87e21aebd36d46") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5141 } Some("wasm_bindgen::convert::closures::_::invoke::h4b3dced75cffa94c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5756 } Some("std::io::impls::>::write_vectored::hd075a45def475b91") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 350 } Some("hashbrown::raw::RawTable::reserve_rehash::h6b20736da9fbbda1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5177 } Some("wasm_bindgen::convert::closures::_::invoke::hf5331ad420aedbb3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5944 } Some("core::num::flt2dec::digits_to_dec_str::h8999c0e105d2a98f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1463 } Some("alloc::vec::Vec::pop::h089ff53d563cdd2f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5719 } Some("::to_vec_in::ConvertVec>::to_vec::hb24b09e45005119c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1757 } Some(" as serde_core::ser::SerializeSeq>::serialize_element::hd6fb6c751bc23f7f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 798 } Some(" as platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree>::get_mut_left_reference::hc58951c6c39ccbd4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1758 } Some(" as serde_core::ser::SerializeMap>::serialize_key::hcdcb2bee6d49c5aa") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 800 } Some(" as platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree>::get_mut_right_reference::h35830eb0945fe0e1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2101 } Some("once_cell::unsync::OnceCell::try_insert::h2d88acac4e7fe54d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 303 } Some("core::slice::sort::shared::pivot::median3_rec::hba632d36ba0c241e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 819 } Some("platform_trees::trees::iterative_size_balanced_tree::IterativeSizeBalancedTree::detach::hc74411bf4669a1f6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2109 } Some("once_cell::unsync::OnceCell::set::h0aba1481b35b4fa5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 822 } Some("platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree::get_left_size::hdbe003b7e8f11a25") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1534 } Some("alloc::collections::btree::node::NodeRef::correct_childrens_parent_links::h0145211e9a1c35f6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 823 } Some("platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree::get_right_size::h0319e50d782da973") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 831 } Some(" as doublets::mem::traits::LinksTree>::attach::h9eddf3bd2e626f3e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1656 } Some(" as core::ops::try_trait::Try>::branch::h7f757898b251f4af") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2725 } Some("serde_json::read::parse_unicode_escape::hc64004309510ea5a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 832 } Some(" as doublets::mem::traits::LinksTree>::detach::h9aea13829a64c4b4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 926 } Some(" as platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree>::get_mut_left_reference::hee9b09911bdf57b3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2663 } Some(" as core::iter::range::RangeInclusiveIteratorImpl>::spec_next::h86f78060916d5e4a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 928 } Some(" as platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree>::get_mut_right_reference::hfb9e73041f9f8cd3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 947 } Some("platform_trees::trees::iterative_size_balanced_tree::IterativeSizeBalancedTree::detach::h126437b20683a8a0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 950 } Some("platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree::get_left_size::hbe35c8f9def8db3d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2542 } Some(" as core::iter::traits::iterator::Iterator>::next::hd68214b2a7875667") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 903 } Some("core::cell::RefCell::new::h1abb9d5463163ecf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1999 } Some("<&str as core::str::pattern::Pattern>::strip_suffix_of::h7ecc18b39562793e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5143 } Some("wasm_bindgen::convert::closures::_::invoke::h530cd73cb42d7fe8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1623 } Some("alloc::collections::btree::map::entry::VacantEntry::insert_entry::{{closure}}::hd9f5eef40d41cd76") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2792 } Some("memchr::arch::all::memchr::One::count_raw::hf6dc3266d67974a1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 951 } Some("platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree::get_right_size::h425fb515895a9ca4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5161 } Some("wasm_bindgen::convert::closures::_::invoke::ha8c4170fe38cfc72") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6014 } Some("::fmt::hd84bfcfe98069e76") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5178 } Some("wasm_bindgen::convert::closures::_::invoke::hfbb58103944df1d8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 959 } Some(" as doublets::mem::traits::LinksTree>::attach::h68f21bdb48d2e622") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 190 } Some(" as test::formatters::OutputFormatter>::write_timeout::h5303f92554ba03bc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1061 } Some("core::char::methods::encode_utf8_raw_unchecked::h239ad69eb7459c05") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 960 } Some(" as doublets::mem::traits::LinksTree>::detach::h74e636ac479d1571") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 192 } Some(" as test::formatters::OutputFormatter>::write_timeout::hf4b4bbd1616d1cd3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 974 } Some("beef::wide::::unpack::h98253dbcf1f56ba7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1027 } Some("core::ptr::drop_in_place::h57e5e110377b0381") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5791 } Some("std::sync::mpmc::context::Context::new::h41fbed2a57167fe4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1224 } Some("alloc::alloc::dealloc::h96a8cff074ac337b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5963 } Some("core::str::count::do_count_chars::ha059beff1dcfd22f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1304 } Some("core::ptr::drop_in_place>>::hcdfc1d85ccf995a0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1063 } Some("alloc::string::String::push::hf208fe047b767b2a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1460 } Some("alloc::vec::Vec::extend_trusted::{{closure}}::h66104de481919f9e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5272 } Some("once_cell::unsync::OnceCell::try_insert::h303d467e79ee2ff6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1484 } Some(" as alloc::vec::spec_extend::SpecExtend>::spec_extend::h087565d42ad67da5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1513 } Some("::fmt::h502fc2214565f719") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5692 } Some(" as core::iter::traits::collect::IntoIterator>::into_iter::hb6fb11ac3eda37a3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1281 } Some("alloc::string::String::push::h26facadb69bab147") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1514 } Some("::fmt::hb05b40656980b6cb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 878 } Some("doublets::mem::unit::store::Store::with_constants::hf5f3d58c14075cbf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1515 } Some("::fmt::hb99010ad6e8aca9d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 125 } Some("core::slice::raw::from_raw_parts::precondition_check::h48f1d62392cfcda3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1459 } Some("alloc::vec::Vec::extend_trusted::hc615ba27e2cef7c3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1701 } Some("::fmt::h5e5e38ebfa3b9a97") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1702 } Some("::fmt::h6e9c13bbfbdac5b4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1544 } Some("alloc::collections::btree::node::slice_insert::hfe0f6c7be687df77") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 269 } Some("core::ptr::drop_in_place::h3e8daba0772d81c9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 218 } Some(" as test::formatters::OutputFormatter>::write_timeout::h4816dc4fde245650") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1703 } Some("::fmt::h70c2adb33ac83318") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 378 } Some("::fmt::h7135bb139f5893c3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 219 } Some(" as test::formatters::OutputFormatter>::write_timeout::h98d81641624be0a8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1619 } Some("alloc::string::String::push::haafee2e30f7cc068") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6015 } Some("::fmt::h70826c1471ad6aa5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 264 } Some("core::ptr::drop_in_place>::ha8584ee85091ad2d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 288 } Some("core::ptr::drop_in_place>::h19844b5e4b0bbbee") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 680 } Some("core::slice::raw::from_raw_parts::precondition_check::hdeadf132da0d40f0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 364 } Some("alloc::raw_vec::RawVecInner::finish_grow::h72d70a0800c1096c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 681 } Some("core::slice::raw::from_raw_parts_mut::precondition_check::h075201587b259e4b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 383 } Some("alloc::raw_vec::RawVecInner::finish_grow::hc1011941fb45889c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1168 } Some(" as core::fmt::Debug>::fmt::haec158e8b0f667a7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5790 } Some("alloc::raw_vec::RawVecInner::finish_grow::h4217bbf3026c2f59") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1275 } Some("core::slice::raw::from_raw_parts::precondition_check::h5d366f6117c1b86f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1297 } Some("core::slice::raw::from_raw_parts::precondition_check::h8d9d1bfa5cdd3644") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 181 } Some(" as test::formatters::OutputFormatter>::write_result::h85aea6eaa72e4472") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1550 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::KV>::kv_mut::h88feb8c5b837a573") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 186 } Some(" as test::formatters::OutputFormatter>::write_result::hf115f8ebbe67647d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1704 } Some("::fmt::h8ad4928a0b53db65") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1705 } Some("::fmt::h8d08975f3a925324") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5967 } Some("core::fmt::Formatter::debug_struct_field2_finish::h08cac909ec906e0d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1278 } Some("core::char::methods::encode_utf8_raw_unchecked::h97189a7e7efaca64") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2552 } Some("alloc::string::String::push::h6d45bf27bcc507b7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1706 } Some("::fmt::h9738efee32eef2c4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 335 } Some(" as core::clone::Clone>::clone::h6ca97ba29c68f896") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1646 } Some(" as core::ops::try_trait::Try>::branch::h24910d4eedb6b5a7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1725 } Some(" as serde_core::de::Visitor>::visit_some::he913030723f1cd77") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 785 } Some(" as core::ops::try_trait::Try>::branch::haf05cbd3c7ca218f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2710 } Some("alloc::string::String::push::h829d9bb43d9bfd4f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1738 } Some("<&mut serde_json::ser::Serializer as serde_core::ser::Serializer>::serialize_unit::h4a8b2ff84cf1f902") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1667 } Some(" as core::ops::try_trait::Try>::branch::hd9c5ae1f8872d21d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1568 } Some("alloc::collections::btree::navigate::,alloc::collections::btree::node::marker::Edge>>::deallocating_end::h77b42a76ac05c5b1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2120 } Some("wasm_bindgen_test::__rt::scoped_tls::ScopedKey::is_set::h3f9712728614b4a5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4749 } Some(" as core::ops::drop::Drop>::drop::h0907a4fc60abc697") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2257 } Some("core::ptr::drop_in_place>::habf454a501ced1ee") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2718 } Some("serde_json::read::next_or_eof::hef9d781da7021ac7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2402 } Some("core::char::methods::encode_utf8_raw_unchecked::h3165633b0cde754f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 332 } Some("::next::hc3061bbfb5588c29") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2397 } Some("::fmt::h87a0432657d0d309") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2721 } Some("serde_json::read::peek_or_eof::h928cb39ddbeaad93") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2749 } Some("::parse_str::h3341531c9c7227e2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2779 } Some("::fmt::h1ebb81cb4538ba1b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2591 } Some("core::char::methods::encode_utf8_raw_unchecked::hb98d7ba9847ca805") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2909 } Some("core::ops::range::RangeInclusive::contains::heceaae77a0d3ab4e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 751 } Some("::spec_to_string::h4279788d48101b56") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2793 } Some("memchr::arch::all::memchr::Two::new::h1d9643dccdcc8910") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2701 } Some("core::char::methods::encode_utf8_raw_unchecked::hdc269232de3a41c6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5532 } Some("__externref_drop_slice") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3218 } Some("js_sys::global::get_global_object::{{closure}}::hab464fa82c15db14") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3219 } Some("js_sys::global::get_global_object::{{closure}}::hbb4869d1a07bae16") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 78 } Some("alloc::alloc::exchange_malloc::hb34f65a104eb8343") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3008 } Some("core::char::methods::encode_utf8_raw_unchecked::hf56025cc96bdd873") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3220 } Some("js_sys::global::get_global_object::{{closure}}::hd9f740f4bbfb8637") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1607 } Some("core::slice::raw::from_raw_parts::precondition_check::ha63acfdad6648665") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4695 } Some("js_sys:: for alloc::string::String>::from::h5d661ce587897058") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 524 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h8766ece458227074") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4805 } Some(" as core::ops::function::FnOnce<()>>::call_once::h6c6798d1e70ffe45") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2461 } Some("wasm_bindgen_test::__rt::tab::hf65000b707ba1a24") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4870 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hddd7cf97a3ebe2ce") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 617 } Some("__wbg_set_link_from_id") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4946 } Some("core::ptr::drop_in_place::h94d0cd9cb40861a1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 781 } Some(" as core::ops::try_trait::Try>::branch::h5a82e965d6d1c2cf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5128 } Some("wasm_bindgen::convert::closures::_::invoke::h0a6fa823864f5c79") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 249 } Some("std::sync::mpmc::list::Channel::recv::h0ab5a14b6862d1f4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 618 } Some("__wbg_set_link_id") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1065 } Some("alloc::string::String::push_str::h9d5558f3b4b6ca8a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5145 } Some("wasm_bindgen::convert::closures::_::invoke::h644d40029d88b454") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 619 } Some("__wbg_set_link_to_id") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5192 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h47e8ebcb7c8acae7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1608 } Some("core::slice::raw::from_raw_parts_mut::precondition_check::h0c56778f57e04617") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5157 } Some("wasm_bindgen::convert::closures::_::invoke::h9c54911d52c8c02f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5519 } Some("alloc::alloc::dealloc::h44356dec35da34bc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 620 } Some("__wbg_set_linkrange_0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 86 } Some("core::ops::function::FnOnce::call_once::hcd08402cb4fce61b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2595 } Some("core::slice::raw::from_raw_parts::precondition_check::h239ef9ae3b53e554") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 89 } Some("core::ptr::drop_in_place>::hf6ba30ff94674f46") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 621 } Some("__wbg_set_linkrange_1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 577 } Some("doublets_web::Link::new::ha6b9b93c2183b2ce") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1367 } Some(" as serde_core::de::SeqAccess>::next_element_seed::hb56e544dfbcbb667") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2746 } Some("::compare::hed81968b334cd048") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 707 } Some("core::fmt::Arguments::from_str::h0cda728d9ae5d3ab") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 622 } Some("__wbg_set_linksconstants__break") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 721 } Some(" as platform_mem::raw_mem::RawMem>::grow::{{closure}}::h87ccaa4d43bc4b88") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 724 } Some(" as platform_mem::raw_mem::RawMem>::shrink::{{closure}}::h23b2b23236af1cf3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2809 } Some("core::slice::raw::from_raw_parts::precondition_check::hab09239b261ca252") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 623 } Some("__wbg_set_linksconstants__continue") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2503 } Some("::fmt::h7ea9ca812597cc07") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 803 } Some(" as platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree>::get_left::h38f0c7837671e7eb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2870 } Some("core::slice::raw::from_raw_parts::precondition_check::h5547f1cc1a711a60") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 624 } Some("__wbg_set_linksconstants__null") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5903 } Some("::fmt::hdabd1f682409e9fe") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1269 } Some("alloc::string::String::push_str::hf36964d92d50424f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2977 } Some("core::slice::raw::from_raw_parts::precondition_check::h42dad0156b9c03fa") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 625 } Some("__wbg_set_linksconstants_any") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2747 } Some("::ignore_str::he13aa4e394e74aa6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 809 } Some(" as platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree>::get_right::h7645ca87e7345f8a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3010 } Some("core::slice::raw::from_raw_parts_mut::precondition_check::h6e0f4525376ed786") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 824 } Some(" as platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree>::get_size::h71043acc0fcb8946") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5822 } Some("core::fmt::Write::write_char::h0ad8f881b04072d3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 830 } Some(" as doublets::mem::unit::generic::links_recursionless_size_balanced_tree_base::LinkRecursionlessSizeBalancedTreeBaseAbstract>::get_base_part::h51b97bea06be6c4e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1271 } Some("::spec_to_string::h28679cd7151c28df") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5991 } Some("core::slice::memchr::memrchr::h62034f51fac0c7ac") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 626 } Some("__wbg_set_linksconstants_error") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1419 } Some(" as serde_core::de::Deserializer>::deserialize_any::h1bbc006af929392e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 931 } Some(" as platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree>::get_left::hc2f862df8e2387d5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1420 } Some(" as serde_core::de::Deserializer>::deserialize_any::h89ce17f4872f5b4e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 193 } Some(" as test::formatters::OutputFormatter>::write_run_start::ha51a8411b9feb64f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 937 } Some(" as platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree>::get_right::h02f1496d4e13f7bb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1421 } Some(" as serde_core::de::Deserializer>::deserialize_any::h95c51508c18bf5a1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 952 } Some(" as platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree>::get_size::heb1fca46d2948baa") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3217 } Some("js_sys::global::get_global_object::h50443b32609b4b05") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 628 } Some("__wbg_set_linksconstants_index_part") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4966 } Some("core::slice::raw::from_raw_parts::precondition_check::h684cfbfffb0807b9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 194 } Some(" as test::formatters::OutputFormatter>::write_run_start::hc3ad6740261a71ee") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 630 } Some("__wbg_set_linksconstants_itself") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5493 } Some("core::slice::raw::from_raw_parts::precondition_check::h0a5e9b4884df564d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 631 } Some("__wbg_set_linksconstants_skip") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5986 } Some("core::unicode::unicode_data::grapheme_extend::lookup_slow::h40490b0ac92efe4b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5514 } Some("core::slice::raw::from_raw_parts_mut::precondition_check::h6b349fe6a96d60ac") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 632 } Some("__wbg_set_linksconstants_source_part") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 449 } Some("core::option::Option::ok_or::ha54e4a6798fc829e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5270 } Some("once_cell::unsync::OnceCell::try_insert::h27e0ae3628707422") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 633 } Some("__wbg_set_linksconstants_target_part") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 677 } Some("unitedlinks_each") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 895 } Some("core::cell::RefCell::try_borrow::h5e71c2cc870bf1c0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5758 } Some("std::io::impls::>::write_all_vectored::h4c97cbe937de11a4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 697 } Some("core::alloc::layout::Layout::array::inner::h8898a0678414b73a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 896 } Some("core::cell::RefCell::try_borrow::h8bbf5a04ef7c64d6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1422 } Some(" as serde_core::de::Deserializer>::deserialize_any::h9b6c65d70b7de127") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 275 } Some("core::ptr::drop_in_place::hec047852b45e67a4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 897 } Some("core::cell::RefCell::try_borrow::hb97f4de0742e0444") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1423 } Some(" as serde_core::de::Deserializer>::deserialize_any::hbbc70244b289c416") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 898 } Some("core::cell::RefCell::try_borrow::hd51c17f19bad4df3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1424 } Some(" as serde_core::de::Deserializer>::deserialize_any::hf3efc19ed4c8d42b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 564 } Some("doublets_web::UnitedLinks::each::ha1d299b661b6424b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1541 } Some("alloc::collections::btree::node::NodeRef::deallocate_and_ascend::h872b3e2d77984aba") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1221 } Some("alloc::alloc::exchange_malloc::h8d491a958182ec29") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2908 } Some("core::ops::range::RangeBounds::contains::ha6bda60eb1070552") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1621 } Some("alloc::string::String::push_str::h34f1bf0fc75496e9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1535 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::Edge>::correct_parent_link::hc4faf6070b908049") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 220 } Some(" as test::formatters::OutputFormatter>::write_run_start::hd9f9c7c100776f98") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1831 } Some("serde_json::error::Error::fix_position::hc14e2e4d67c1cee6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1551 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::KV>::drop_key_val::h97e8f58e7d86ce6e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 221 } Some(" as test::formatters::OutputFormatter>::write_run_start::hfdfee318c536dee8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2086 } Some("js_sys::Promise::new_typed::h2d4e748c3ce7ffa3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 958 } Some(" as doublets::mem::unit::generic::links_recursionless_size_balanced_tree_base::LinkRecursionlessSizeBalancedTreeBaseAbstract>::get_base_part::ha6d13da6d298f9a6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2396 } Some("::spec_to_string::h46f9ebc791a3725d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1988 } Some("alloc::alloc::exchange_malloc::h4381d05891c5b978") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2556 } Some("alloc::string::String::push_str::h464ba663297ea796") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2314 } Some("core::cell::RefCell::try_borrow::hfd154046682d4512") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2680 } Some("::spec_to_string::h58a8d3cb58f74dd0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2319 } Some("core::cell::RefCell::borrow::h47f8d454a29f8a56") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2712 } Some("alloc::string::String::push_str::hd085ddacf2282c04") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2320 } Some("core::cell::RefCell::borrow::h615563cb128a8627") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5957 } Some("core::fmt::builders::DebugSet::entry::h614b20745ed38459") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1017 } Some("core::ptr::drop_in_place,alloc::rc::Rc>>>::h965235db473f9e63") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2106 } Some("once_cell::unsync::OnceCell::get_or_try_init::ha4653ae18c260627") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1019 } Some("core::ptr::drop_in_place,alloc::rc::Rc>>>::h858cbeedb4463bfe") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 706 } Some("core::fmt::Arguments::as_statically_known_str::h5106c0d699064b50") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1022 } Some("core::ptr::drop_in_place,alloc::rc::Rc>>>::h16dfbc0059f48e90") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1171 } Some("doublets::data::link::Link::new::hc5f58b1614b0c8bc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1470 } Some("alloc::vec::Vec::remove::hddcd2d18208fd2ae") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5274 } Some("once_cell::unsync::OnceCell::get_or_try_init::h5da67702fce1a222") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1178 } Some(" as platform_trees::lists::linked_list::LinkedList>::get_previous::h708abf51411d1ffb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2745 } Some(" as core::iter::traits::iterator::Iterator>::next::h7965c230183a157c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2321 } Some("core::cell::RefCell::borrow::he208b0899c028cb9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5276 } Some("once_cell::unsync::OnceCell::get_or_try_init::hab58e09ad12834d0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2765 } Some("alloc::alloc::exchange_malloc::h5d8c86cbfc5e460b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2954 } Some(" as core::iter::traits::iterator::Iterator>::next::h27351f10013b7256") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5277 } Some("once_cell::unsync::OnceCell::get_or_try_init::hf43b905b034a0ca6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4643 } Some("core::cell::RefCell::borrow::h410ebaf9c2217180") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 207 } Some(" as test::formatters::OutputFormatter>::write_test_discovered::h416c80480ee109a3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1182 } Some(" as platform_trees::lists::linked_list::LinkedList>::get_next::h714f4d810c786501") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 208 } Some(" as test::formatters::OutputFormatter>::write_test_discovered::h4e83947a0d8066a5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2417 } Some("__wbgtest_coverage_path") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1219 } Some("doublets_web::const_utils::from::{{closure}}::h1412c47a5bee6957") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 229 } Some(" as test::formatters::OutputFormatter>::write_test_discovered::h97351fa23cc0a968") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2727 } Some("::decode_hex_escape::ha2ea3b5165324285") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1223 } Some("alloc::alloc::alloc::h36ee138363d99f63") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 230 } Some(" as test::formatters::OutputFormatter>::write_test_discovered::ha6f6e860ea2404e9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1573 } Some("serde_core::ser::impls::::serialize::hfb7d8033c93f4997") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1826 } Some("serde_core::ser::impls::::serialize::h83381ddbb07a1707") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 447 } Some("core::option::Option::map::hc093fd14eae98d6c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5126 } Some("wasm_bindgen::convert::closures::_::invoke::h06fccdae17a61ebd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1828 } Some("serde_core::ser::impls::::serialize::h3a9cb93d29de36f2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1911 } Some("core::option::Option::is_some::h4a5361bc217d47ad") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1176 } Some("platform_trees::lists::absolute_circular_linked_list::AbsoluteCircularLinkedList::detach::h81ef45d36bce09bc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1912 } Some("core::option::Option::is_some::h5e6e631016f6b50d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5130 } Some("wasm_bindgen::convert::closures::_::invoke::h0e59d84ac69a9ea0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1915 } Some("core::option::Option::is_some::h6fc0ccea973f43ac") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1916 } Some("core::option::Option::is_some::ha6f788988f3df8ef") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1274 } Some("core::fmt::Arguments::as_statically_known_str::h7bcfaac57139cb2f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5140 } Some("wasm_bindgen::convert::closures::_::invoke::h4a404991ab02a64d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1917 } Some("core::option::Option::is_some::hc0ded7a776d08af2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2061 } Some("core::fmt::Arguments::from_str::ha9a1224199edc0bf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4981 } Some("alloc::alloc::exchange_malloc::h591f496044d55ebb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 708 } Some("core::fmt::Formatter::write_fmt::haf239d47e29f5f2d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2211 } Some("core::ptr::drop_in_place>::h1bb650d32715b13c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5144 } Some("wasm_bindgen::convert::closures::_::invoke::h63eede955f7067b7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2218 } Some("core::ptr::drop_in_place>::ha4085a268ca7d87a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 779 } Some(" as core::ops::try_trait::Try>::branch::h1fbc3d7d636ab010") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5152 } Some("wasm_bindgen::convert::closures::_::invoke::h8a346edf1c4a78f8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2225 } Some("core::ptr::drop_in_place>::ha7114dc3e128f08b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5977 } Some("core::str::slice_error_fail_rt::he82115ffb6428cf1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2244 } Some("core::ptr::drop_in_place>>>::h2512d0dc51d43757") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1296 } Some("core::fmt::Arguments::as_statically_known_str::hc5228c8b353cc918") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5162 } Some("wasm_bindgen::convert::closures::_::invoke::hb5e2f3366e036b7b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2247 } Some("core::ptr::drop_in_place>>>::h3f2864b3077b4631") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 782 } Some(" as core::ops::try_trait::Try>::branch::h6143f07cf0f94c06") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2290 } Some("core::ptr::drop_in_place>::ha1228e697b42b633") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1729 } Some("<&mut serde_json::ser::Serializer as serde_core::ser::Serializer>::serialize_map::h49e31c1be39f9755") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2350 } Some("serde_core::ser::impls::::serialize::h799ae490a651a0ce") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 786 } Some(" as core::ops::try_trait::Try>::branch::hbc0c272fcec898c8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5164 } Some("wasm_bindgen::convert::closures::_::invoke::hbeb778205ab2e073") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2384 } Some("::writeln::hc8843d7655759b04") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1563 } Some("alloc::collections::btree::search::>::search_tree::h053ab82c5feb2bad") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2551 } Some("core::option::Option::is_some::h845f88bb974db555") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1300 } Some("core::fmt::Formatter::write_fmt::h1c64ed7597d3f2d0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5168 } Some("wasm_bindgen::convert::closures::_::invoke::hd3476caef6560a89") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1732 } Some("<&mut serde_json::ser::Serializer as serde_core::ser::Serializer>::serialize_seq::hc0ad4b9a93d9e09b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 377 } Some("core::iter::traits::iterator::Iterator::nth::h514789fd7840fb5d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5172 } Some("wasm_bindgen::convert::closures::_::invoke::he8eb6714acc0df21") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1399 } Some("serde_json::de::Deserializer::parse_decimal::he2674a6938316a6d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2047 } Some("core::fmt::Arguments::as_statically_known_str::hf28e503a28bd61a0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 883 } Some("doublets::data::traits::Doublets::update_by_with::h9652017b553914d0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1800 } Some("alloc::collections::btree::map::BTreeMap::insert::h09bb6795c68d1b03") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2119 } Some("wasm_bindgen_test::__rt::scoped_tls::ScopedKey::with::he7b51902836ea244") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1611 } Some("core::result::Result::map::h979356c4ecc8b7d4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2123 } Some("core::iter::traits::iterator::Iterator::try_fold::h5819707efc2068b0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3023 } Some("::fmt::h4340f4de6ef1e7df") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 115 } Some("core::str::::split_once::hfa31b4dfadb00a3d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2062 } Some("core::fmt::Formatter::write_fmt::hb5708f6560acd191") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2498 } Some("wasm_bindgen_test::__rt::Context::run::_::__wasm_bindgen_generated_WasmBindgenTestContext_run::{{closure}}::he3317aff3b9c930f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2692 } Some("core::fmt::Formatter::write_fmt::h5d3e085b8f3f0471") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4998 } Some("js_sys::futures::queue::QueueState::run_all::hb8edd433b0d3e4b5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2612 } Some("alloc::raw_vec::RawVecInner::with_capacity_in::h8e391ebc23ee7a49") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2541 } Some(" as core::iter::traits::iterator::Iterator>::next::hb507c477accaeec1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 100 } Some("web::united_links_crud_round_trip::h422b9f1a919e7f88") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1543 } Some("alloc::collections::btree::node::slice_insert::h288a9035c246a969") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2630 } Some("alloc::raw_vec::RawVecInner::with_capacity_in::h7c09dc3251181538") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2668 } Some("core::str::::rfind::hc92add6e9b0de5ba") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2686 } Some("core::fmt::Arguments::as_statically_known_str::h364923d20203566c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 328 } Some("test::cli::get_format::hfc69f2ec4ef68ab4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2808 } Some(" as alloc::vec::spec_extend::SpecExtend<&T,core::slice::iter::Iter>>::spec_extend::hdf764d3e5e36a4a0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5940 } Some("core::fmt::float::float_to_decimal_common_exact::hdea1d2c294e1b44a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2976 } Some("core::fmt::Arguments::as_statically_known_str::h70872014aa2d31e6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 309 } Some("core::slice::sort::stable::driftsort_main::hd2e5ac9a7f448598") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1388 } Some("serde_json::de::Deserializer::parse_ident::h78ff47735ccb4c4a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 455 } Some("core::option::Option::map_or::ha68836141ad73662") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5492 } Some("core::fmt::Arguments::as_statically_known_str::h8822f55a104e9b89") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1135 } Some("doublets_web::UnitedLinks::update::_::__wasm_bindgen_generated_UnitedLinks_update::{{closure}}::hc74512c08b259d8b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1697 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::visit_enum::h2655d22085cfb648") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5731 } Some("alloc::raw_vec::RawVecInner::with_capacity_in::h0311c89158ac1659") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5741 } Some("__rustc[16f1505adc47261a]::__rdl_realloc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1552 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::KV>::into_kv::hba5f30ad8216a506") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2985 } Some("core::fmt::Formatter::write_fmt::h6723330c856281f8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2697 } Some("core::str::traits:: for core::ops::range::Range>::index::h6563dd5dfe3046d4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1698 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::visit_enum::hd59ee28c1ba19182") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3169 } Some("js_sys::Promise::then_map::hb04b3c5d075c6f38") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2934 } Some("zmij::to_decimal_schubfach::h0e9da7479ba5c3bf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 343 } Some("<[f64] as test::stats::Stats>::percentile::h7d7ee97b803adba6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 525 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h8c3186cf119f74cd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2382 } Some("wasm_bindgen_test::__rt::detect::detect::h0b01086ae2df2301") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5486 } Some("wasm_bindgen::externref::Slab::dealloc::h9c256a4a01a67eb6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 566 } Some("doublets_web::UnitedLinks::count::h18460fd744cfbbc6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1994 } Some("core::ptr::copy::precondition_check::h1bb7a84605231df8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5497 } Some("core::fmt::Formatter::write_fmt::hac3c29092f53752f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 79 } Some("alloc::alloc::Global::alloc_impl_runtime::h7beca1b76b1a5e26") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2754 } Some("core::ptr::copy::precondition_check::h3b54ed7ddc0ae63c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2815 } Some("core::ops::function::FnOnce::call_once::h3d5933cc3fb31136") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 580 } Some("::from_abi::h5d10b6556028d8de") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2816 } Some("core::ops::function::FnOnce::call_once::ha04d8d58433e3720") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2916 } Some("core::ptr::copy::precondition_check::h5a19fa97348b63b7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 584 } Some("::from_abi::h80007b96198bf138") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2859 } Some("core::ptr::const_ptr::::offset_from::h232f304ea9afe596") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1222 } Some("alloc::alloc::Global::alloc_impl_runtime::h9f4308ce9ee423b4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 787 } Some(" as core::ops::try_trait::Try>::branch::hced406d118963e56") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2917 } Some("core::ptr::const_ptr::::offset_from::h96f5d2055b594221") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2157 } Some("alloc::rc::Rc::try_unwrap::hdaae3f4b4bb50bb3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4632 } Some("core::ptr::copy::precondition_check::h6a7712b39ad24466") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 788 } Some(" as core::ops::try_trait::Try>::branch::hd11a7b41171a9bab") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2694 } Some("core::ptr::const_ptr::::offset::precondition_check::hb47affbb6a3ff830") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1989 } Some("alloc::alloc::Global::alloc_impl_runtime::hf3e4ada87eb2d780") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5877 } Some("::take_box::ha4d04ad03cee361a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2863 } Some("core::ptr::const_ptr::::offset::precondition_check::h7f0499e23566263b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3032 } Some(">::from::h07ce6dd266b4642a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2602 } Some("alloc::alloc::Global::alloc_impl_runtime::hd614c28cc18900a3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5952 } Some("core::fmt::builders::DebugTuple::field::h4ef3f86bd8c9c781") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 307 } Some("core::slice::sort::shared::smallsort::insertion_sort_shift_left::hfc9138ee31bbfdf0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4628 } Some("core::fmt::Arguments::from_str::h8a30feae5d02bcbb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4694 } Some("js_sys:: for alloc::string::String>::from::h273cc578810c479f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2930 } Some("zmij::compute_dec_exp::ha317e4a5a981e8e2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2798 } Some("memchr::memchr::Memchr::new::h3ad1838de5e50d9c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2766 } Some("alloc::alloc::Global::alloc_impl_runtime::hb7b5658ecf616dea") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 842 } Some(" as core::clone::Clone>::clone::hee414d6408bcf251") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4909 } Some("core::ptr::drop_in_place>::h30c539c53c95edf5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5147 } Some("wasm_bindgen::convert::closures::_::invoke::h7b1c11e3a7cc4a3a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4935 } Some("core::ptr::drop_in_place js_sys::futures::task::singlethread::ConsoleTask>>>::hc18dea9d7a4b253f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 923 } Some(" as core::clone::Clone>::clone::h0f0ade61f0747371") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 784 } Some(" as core::ops::try_trait::Try>::branch::h9142dc9e508744c4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4950 } Some("core::ptr::drop_in_place>::h28db4e862fa00f59") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4973 } Some("alloc::alloc::Global::alloc_impl_runtime::h1cb970ddf24cc42e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4953 } Some("core::ptr::drop_in_place>::h7a096df15c8ff36c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1014 } Some(" as core::ops::drop::Drop>::drop::hbc4d7d9d1d3f0c2c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1125 } Some("doublets_web::UnitedLinks::new::_::__wasm_bindgen_generated_UnitedLinks_new::{{closure}}::h913a16b89a1af271") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5232 } Some("core::result::Result::is_ok::hb0b0b326bd3e421e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1491 } Some("::deserialize::__FieldVisitor as serde_core::de::Visitor>::visit_str::h385a072505d7a915") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5233 } Some("core::result::Result::is_ok::hf19745be16ca307f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5517 } Some("alloc::alloc::Global::alloc_impl_runtime::h8616fed5b4fca902") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1273 } Some("<&mut W as core::fmt::Write::write_fmt::SpecWriteFmt>::spec_write_fmt::h19b5394f572bf8d2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5455 } Some("wasm_bindgen::convert::traits::WasmRet::join::h3311c09ed67651fd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2078 } Some("js_sys::Array::for_each::hd02579eb84727bae") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5503 } Some("core::ptr::drop_in_place>::hc49ba94ab57536be") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1327 } Some(" as serde_core::de::EnumAccess>::variant_seed::h223a88319779b511") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 961 } Some(" as doublets::mem::traits::LinksTree>::search::ha21decbe29bb90ce") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5721 } Some("alloc::alloc::Global::alloc_impl_runtime::h055243bc912dcdbf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5516 } Some("alloc::alloc::alloc::h2bd318f494804cc4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2142 } Some("core::slice::::ends_with::hef6bac68680efb34") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5820 } Some("core::fmt::num::::fmt::h812b208f79541b3d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1394 } Some("serde_json::de::Deserializer::parse_whitespace::h268929d0b215830f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5821 } Some("core::fmt::num::::fmt::ha9ddefa9c2849ac3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2671 } Some("serde_json::error::starts_with_digit::h49faf2d40cebd353") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 396 } Some("getopts::Options::optflag::heed9aef1aaf7ba0b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5979 } Some(" as core::fmt::Debug>::fmt::h38c64a8189ec9798") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 366 } Some("::fmt::h143d4d5cf00164de") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2685 } Some("<&mut W as core::fmt::Write::write_fmt::SpecWriteFmt>::spec_write_fmt::hb4a9734e129d182b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1561 } Some("alloc::collections::btree::node::Handle,alloc::collections::btree::node::marker::Edge>::insert_fit::h6b3b65a11f2ecc45") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 368 } Some(" as core::fmt::Debug>::fmt::h49304bfc6f7a9ab0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2975 } Some("<&mut W as core::fmt::Write::write_fmt::SpecWriteFmt>::spec_write_fmt::h7e073ad8cb0a6760") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 484 } Some("wasm_bindgen::__rt::assert_not_null::h35f6fd762e896a96") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 671 } Some("linksconstants_via_only_external") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1413 } Some("serde_json::de::Deserializer::parse_object_colon::hf756f88bc3c54104") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1693 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::visit_seq::ha638f13740a8ce63") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2932 } Some("zmij::compute_exp_shift::h13a34371a9de965f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4651 } Some("alloc::collections::vec_deque::VecDeque::push_back_mut::hc3cbda614e0f3c59") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 235 } Some(" as core::iter::traits::iterator::Iterator>::next::h8f4706f60b218489") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 183 } Some("test::formatters::terse::TerseFormatter::write_progress::h873d1ee81a5580a9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 265 } Some("core::ptr::drop_in_place::hcdfb582c7cf52b48") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2544 } Some("wasm_bindgen_test_shared::coverage_path::hf73ebcb65c737ff7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 344 } Some("<[f64] as test::stats::Stats>::median_abs_dev::h2310d699d14dca71") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 351 } Some("alloc::collections::vec_deque::VecDeque::grow::h4a32df470ab7bb98") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5002 } Some("js_sys::futures::queue::Queue::schedule_task::ha409dea67026facf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 575 } Some("::clone::h5a040430862250bb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5892 } Some("alloc::ffi::c_str::CString::_from_vec_unchecked::h3ba32dfc76be2b71") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2386 } Some("wasm_bindgen_test::__rt::criterion::baseline::__wbgbench_import::hd63a23b71aa348e3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 188 } Some("test::formatters::terse::TerseFormatter::write_progress::hba4bf4e3489d8b30") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 486 } Some("wasm_bindgen::__rt::assert_not_null::h4609b28d831377ac") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1781 } Some("serde_json::ser::format_escaped_str_contents::hb953d6980a62e95f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5870 } Some("dlmalloc::dlmalloc::Dlmalloc::insert_large_chunk::hc7cb11ca1345ed38") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 488 } Some("wasm_bindgen::__rt::assert_not_null::h9be65597987bd406") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1108 } Some("alloc::rc::Rc::try_unwrap::h223e7ed0dd175181") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 490 } Some("wasm_bindgen::__rt::assert_not_null::haaa0fadf44cf7f8f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1469 } Some("alloc::vec::Vec::push_mut::h90528fad42e4be20") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 55 } Some("::default::h78b7b73202489790") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 736 } Some("wasm_bindgen::JsValue::from_str::h775b409c577590e8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1647 } Some(" as core::ops::try_trait::Try>::branch::h24e7831a68fe0963") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 749 } Some(" as core::convert::From>::from::hbdce39e8ee05772f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 117 } Some("core::str::traits:: for core::ops::range::RangeFrom>::get::h1e1e1cce1a2c30e2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1184 } Some("platform_trees::lists::absolute_linked_list::AbsoluteLinkedList::dec_size::h936120b984ffcc8c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 853 } Some(" as doublets::data::traits::Links>::create_links::h1c31bcf84d605c71") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2068 } Some("alloc::raw_vec::RawVec::grow_one::hc93e4e012204f0ff") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1187 } Some("platform_trees::lists::absolute_linked_list::AbsoluteLinkedList::inc_size::heb304f1fa55d8f63") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1995 } Some("core::str::traits:: for core::ops::range::RangeFrom>::get::h509831a4b374505a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1391 } Some("serde_json::de::Deserializer::fix_position::h7256e4eb9ba4bf1f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2069 } Some("alloc::raw_vec::RawVec::grow_one::hda4191479fed123f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1453 } Some("serde_core::ser::impls::>::serialize::h30ec50cab1ac3631") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2699 } Some("core::str::traits:: for core::ops::range::RangeFrom>::get::h0b67611bdfc44061") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1531 } Some(",alloc::collections::btree::node::marker::KV>::drop_key_val::Dropper as core::ops::drop::Drop>::drop::hce5d3d0c113452fb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5769 } Some("std::io::stdio::_print::he4d217c65f2d288d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 137 } Some("test::formatters::json::JsonFormatter::write_event::hbbadc8cfbf89c171") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1617 } Some("::cmp::h8dcbd41ec738b607") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1722 } Some(" as serde_core::de::Visitor>::visit_none::h2a4757bb0bd63e25") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4675 } Some("js_sys::futures::task::singlethread::ConsoleTask::run::h89a4476b999d1eed") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1739 } Some("<&mut serde_json::ser::Serializer as serde_core::ser::Serializer>::serialize_some::h43cf34c49b71f1d3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 283 } Some("core::ptr::drop_in_place>::h3ad1e6d1ad9dec09") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1654 } Some(" as core::ops::try_trait::Try>::branch::h75a2c3873109a757") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1740 } Some("<&mut serde_json::ser::Serializer as serde_core::ser::Serializer>::serialize_some::hd81109a1fd0ef2ed") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5792 } Some("std::thread::current::init_current::ha0d793c23a88e575") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2997 } Some("core::str::traits:: for core::ops::range::RangeFrom>::get::h886cca41e1d5cd1e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 144 } Some("test::formatters::json::JsonFormatter::write_event::h6f423b9672913848") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 338 } Some("test::cli::get_color_config::h7fa2c1367f536ca7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1104 } Some("alloc::rc::data_offset::hbd8973550e9ed8ff") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5806 } Some("std::panicking::panic_with_hook::h77afe0ddfda2cb89") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5539 } Some("__wbindgen_malloc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1105 } Some("alloc::rc::data_offset::hdbc4c6753bf56cc1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 209 } Some(" as test::formatters::OutputFormatter>::write_merged_doctests_times::h6a51ced02286d0f7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 352 } Some("test::run_tests::get_timed_out_tests::h3514649b2e77ba43") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1106 } Some("alloc::rc::data_offset::he2fcc3df278afd0c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5767 } Some("std::io::stdio::Stderr::lock::he8fbd4ebf90ef0f6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 210 } Some(" as test::formatters::OutputFormatter>::write_merged_doctests_times::h9b1540af981449fa") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1107 } Some("alloc::rc::data_offset::he9557769ff86db05") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 277 } Some("core::ptr::drop_in_place::h82f5a446b491138c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1536 } Some("alloc::collections::btree::node::NodeRef::correct_childrens_parent_links::hf29dcdca876ae1b6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 233 } Some(" as test::formatters::OutputFormatter>::write_merged_doctests_times::h486eafba50a91356") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1439 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_enum::h7d72623f40f03a9e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1196 } Some("std::sys::sync::once::no_threads::Once::call::hdbcebfedf330cdbb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2114 } Some("wasm_bindgen_test::__rt::scoped_tls::ScopedKey::with::h30376952a3c4c741") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 234 } Some(" as test::formatters::OutputFormatter>::write_merged_doctests_times::hd6e72f2abd43663b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1570 } Some("alloc::collections::btree::navigate::,alloc::collections::btree::node::marker::Edge>>::deallocating_next_unchecked::h102aee76ddc35e12") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 263 } Some("core::ptr::drop_in_place)>>::h31fb12d9213cd3e3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1749 } Some("core::iter::traits::iterator::Iterator::try_for_each::h7697479e3d491793") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2115 } Some("wasm_bindgen_test::__rt::scoped_tls::ScopedKey::with::h5ef2f04767ccef53") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1779 } Some("serde_core::ser::impls::>::serialize::hf9fb4a5bdfc01b71") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1866 } Some("wasm_bindgen::convert::impls::>::into_abi::h5f01e15a86d56d61") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2116 } Some("wasm_bindgen_test::__rt::scoped_tls::ScopedKey::with::h671d66de5d95f242") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1813 } Some(" as serde_core::ser::SerializeStruct>::end::hab1fb9c61570fa24") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 587 } Some("::from_abi::h96a6cd76d87d4e6a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1992 } Some("std::sys::sync::once::no_threads::Once::call::h5748e823d8c8ac5c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1834 } Some("wasm_bindgen::__rt::assert_not_null::h378709dc17720459") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2117 } Some("wasm_bindgen_test::__rt::scoped_tls::ScopedKey::with::h8383a14e0c5a626b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 836 } Some(" as doublets::mem::unit::generic::links_recursionless_size_balanced_tree_base::LinkRecursionlessSizeBalancedTreeBaseAbstract>::first_is_to_the_left_of_second_4::he9892e905331bd3c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5942 } Some("core::num::flt2dec::strategy::grisu::format_exact_opt::he1be7fe0b3d2452a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2118 } Some("wasm_bindgen_test::__rt::scoped_tls::ScopedKey::with::hd037999a49b588f4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2323 } Some("alloc::boxed::Box::try_new_uninit_in::ha7b463778a447808") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 837 } Some(" as doublets::mem::unit::generic::links_recursionless_size_balanced_tree_base::LinkRecursionlessSizeBalancedTreeBaseAbstract>::first_is_to_the_right_of_second_4::h73e80a24bfeb7cd6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1862 } Some("wasm_bindgen::__rt::WasmRefCell::into_inner::h81a1e47edbb3c3f2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2156 } Some("alloc::rc::data_offset::h6b3597640e1cd253") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2325 } Some("alloc::boxed::Box::try_new_uninit_in::hca159d6f93badf84") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4977 } Some("alloc::rc::data_offset::hf2f00e2f2698e1b0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 963 } Some(" as doublets::mem::unit::generic::links_recursionless_size_balanced_tree_base::LinkRecursionlessSizeBalancedTreeBaseAbstract>::first_is_to_the_left_of_second_4::h93e481fdf8d25f90") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5948 } Some("core::fmt::float::float_to_exponential_common_shortest::hf2c7dab2e1c32e09") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2604 } Some("alloc::raw_vec::RawVecInner::current_memory::h9e44263826560408") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5569 } Some("wasm_bindgen::convert::impls::>::join::h459bc4f04ad19a79") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 964 } Some(" as doublets::mem::unit::generic::links_recursionless_size_balanced_tree_base::LinkRecursionlessSizeBalancedTreeBaseAbstract>::first_is_to_the_right_of_second_4::hc9cae1060605979c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2626 } Some("alloc::raw_vec::RawVecInner::current_memory::ha310f6ce0735b959") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 197 } Some("core::slice::sort::stable::driftsort_main::h771bc38ac0120aba") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1787 } Some("serde_json::ser::to_vec::h23c1c921808c21b9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1503 } Some("::deserialize::__Visitor as serde_core::de::Visitor>::visit_seq::ha37771559042d3a1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2726 } Some("serde_json::read::ignore_escape::ha9682e0d4d07330b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2714 } Some("::invalid_type::hdbc9d3aaa3bb085f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 766 } Some("core::result::Result::map::h0e1a69391a869a8a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2807 } Some(" as core::iter::traits::double_ended::DoubleEndedIterator>::next_back::he32bb0ba60b3998a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5689 } Some("alloc::vec::into_iter::IntoIter::as_raw_mut_slice::h4a416c39a4826db5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2411 } Some("js_sys::futures::task::singlethread::Task::spawn::h5df42023c8f0d64a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 767 } Some("core::result::Result::map::h3df414fefd70eb4e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2928 } Some("zmij::umul192_hi128::h4c6fe6c396637c2d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5134 } Some("wasm_bindgen::convert::closures::_::invoke::h1fb540c75af6a572") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5723 } Some("alloc::raw_vec::RawVecInner::current_memory::h28299c3d5d26f023") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2933 } Some("zmij::Pow10SignificandsTable::get_unchecked::h025bcc0c8e8c06ad") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 857 } Some(" as doublets::data::traits::Links>::delete_links::haff12a0b65c064ce") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 340 } Some("test::stats::percentile_of_sorted::hc6547618d1e7299a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1090 } Some("alloc::rc::Rc::new::h989b0c30b33c1daf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 276 } Some("core::ptr::drop_in_place::h58898b0aa8208b3c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 860 } Some("doublets::mem::unit::store::Store::is_unused::he7dff5a22a02413e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1949 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::ha45307bf0a7f9afe") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 768 } Some("core::result::Result::map::h43e01e7f537e6e1f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 597 } Some("__wbg_get_link_from_id") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2033 } Some("wasm_bindgen::JsValue::from_str::hb267aec7e7e33aeb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1127 } Some("doublets_web::UnitedLinks::each::_::__wasm_bindgen_generated_UnitedLinks_each::{{closure}}::h4eb6f35238883374") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2122 } Some("core::iter::traits::iterator::Iterator::try_for_each::h0e3276b7c74fb9aa") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 598 } Some("__wbg_get_link_id") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2187 } Some("core::ops::function::FnOnce::call_once::h0e62147b2f2ac725") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1091 } Some("alloc::rc::Rc::new::hbd3ac3e4d5f0d863") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2401 } Some("core::char::methods::encode_utf8_raw::hc20992fe0f54fc05") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2263 } Some("core::ptr::drop_in_place::h8ae6e76174aa538b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 599 } Some("__wbg_get_link_to_id") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2399 } Some("core::ops::function::impls:: for &mut F>::call_mut::h8677e86269db25fd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3007 } Some("core::char::methods::encode_utf8_raw::h25d0fa496efe40e8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2404 } Some("core::iter::traits::iterator::Iterator::try_for_each::call::{{closure}}::h6ceebb581b4fc5d4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1405 } Some("serde_json::de::Deserializer::parse_long_integer::had53a34f2951cc34") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2824 } Some("core::ptr::drop_in_place::hdea46ea8e367e730") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 600 } Some("__wbg_get_linkrange_0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 808 } Some("platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree::left_rotate::hd8c6d4ea13da7346") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5142 } Some("wasm_bindgen::convert::closures::_::invoke::h4d50c92a62ceb235") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2854 } Some("core::cmp::min::h24b9f94b18d2ec21") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 601 } Some("__wbg_get_linkrange_1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2897 } Some("::write_to_zmij_buffer::hf58a5cb76225141c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 810 } Some("platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree::right_rotate::h103d857c8ffd3f5d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5171 } Some("wasm_bindgen::convert::closures::_::invoke::he4d3cf59c3739bc7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 602 } Some("__wbg_get_linksconstants__break") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3030 } Some(" as core::clone::Clone>::clone::h50f8dda80264bbf6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 936 } Some("platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree::left_rotate::h66283f9d6d7bfc0b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4524 } Some("wasm_bindgen::JsValue::from_str::hb50921752916df36") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 176 } Some("test::formatters::junit::JunitFormatter::write_message::h206b63b23ec43dcd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 603 } Some("__wbg_get_linksconstants__continue") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4686 } Some("js_sys::futures::task::singlethread::Task::into_raw_waker::raw_wake::h50a0a8ee54ea9777") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 938 } Some("platform_trees::trees::recursive_size_balanced_tree::RecursiveSizeBalancedTree::right_rotate::h64b08f81b9df4c2d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4692 } Some("js_sys::futures::task::singlethread::Task::run::{{closure}}::h9f397fb628d94592") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 629 } Some("__wbg_set_linksconstants_internal_range") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4900 } Some("core::ops::function::FnOnce::call_once::hee1ed99c8949ca55") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5236 } Some(">::into::h137b63acfd666b5f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 604 } Some("__wbg_get_linksconstants__null") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 714 } Some("platform_mem::raw_place::RawPlace::set_ptr::hb75c7632c44812ec") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5971 } Some("core::num::bignum::Big32x40::mul_digits::h4b3970c225d9a61a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4689 } Some("js_sys::futures::task::singlethread::Task::run::h75b8bea2186d6e81") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 605 } Some("__wbg_get_linksconstants_any") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1077 } Some("core::ub_checks::maybe_is_nonoverlapping::runtime::h8d51790396a21ac8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5772 } Some("::fmt::h65634188156334a3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 606 } Some("__wbg_get_linksconstants_error") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1164 } Some("::return_abi::h84e6cf12c1884224") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 98 } Some("::next_match::h7498e7d9d4f0b18b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 608 } Some("__wbg_get_linksconstants_index_part") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1538 } Some("alloc::collections::btree::node::NodeRef::new_internal::ha2e01f56577929e4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1615 } Some("core::ub_checks::maybe_is_nonoverlapping::runtime::h50bf748cbc37ed3e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 610 } Some("__wbg_get_linksconstants_itself") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1759 } Some(" as serde_core::ser::SerializeMap>::serialize_value::h0dd514848ac27674") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1997 } Some("<&str as core::str::pattern::Pattern>::is_contained_in::h0b0db53637b513f5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1609 } Some("core::result::Result::ok::h2c6bf3e17d6cbaf1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 611 } Some("__wbg_get_linksconstants_skip") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1762 } Some(" as serde_core::ser::SerializeMap>::serialize_value::h5fbe2613ea8d37e1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1748 } Some("serde_core::ser::iterator_len_hint::h62c6701951f57865") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 612 } Some("__wbg_get_linksconstants_source_part") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1998 } Some("::next_match::h8d2919be0e846f3b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1754 } Some("serde_core::ser::iterator_len_hint::hd0eb1b3e8323e2ce") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 613 } Some("__wbg_get_linksconstants_target_part") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 712 } Some("platform_mem::raw_place::RawPlace::current_memory::h47934b148c6c3368") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2067 } Some("alloc::raw_vec::RawVec::grow_one::h3934a54246f95afd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2661 } Some("::next_match_back::hc7a50e66f2e2749b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2133 } Some("core::f64::::classify::hb299a8f2b3cd5b9f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5753 } Some("std::io::Write::write_fmt::h2c3f307732372fbd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3017 } Some("<&str as core::str::pattern::Pattern>::is_contained_in::h2a13c3876ec619ff") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5754 } Some("std::io::Write::write_fmt::hf2f7ade7905b1f4b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2700 } Some("core::str::traits:: for core::ops::range::RangeFrom>::index::h595ee5d6ce27f359") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5239 } Some("::drop::hc4e499779e63fc45") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 848 } Some("doublets::mem::unit::store::Store::exists::hf85a028e031ff285") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2871 } Some("core::slice::::split_at::h7a60bd1bdf71c1ab") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5578 } Some("core::cmp::max::h83bc6da1d71e7e1a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1263 } Some("console_error_panic_hook::hook_impl::h828ae9ce9513842a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4655 } Some("alloc::raw_vec::RawVec::grow_one::hdf909b5ecbd57253") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5688 } Some("alloc::vec::Vec::capacity::h39b6f2b29d552aa7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1878 } Some("wasm_bindgen_test::__rt::browser::HTMLDocument::getElementById::h5320500c7bcee597") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5779 } Some("std::rt::cleanup::h7d670c1021992e6d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5521 } Some("alloc::raw_vec::RawVec::grow_one::h971dfab7dbfb6579") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5842 } Some("::fmt::h69cba1aad9b39a0a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2486 } Some("wasm_bindgen_test::__rt::Context::new::panic_handling::haf350c37c3a22a7a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5989 } Some("core::slice::sort::stable::drift::sqrt_approx::h73d10e82bb3324f1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5954 } Some("core::fmt::builders::DebugStruct::finish_non_exhaustive::h86d9a06d87c7b1a4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 76 } Some(" as core::ops::deref::Deref>::deref::he2e5e887895ad7b3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2596 } Some("::to_vec_in::ConvertVec>::to_vec::h9c0031816c71474c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 892 } Some("core::cell::RefCell::into_inner::habd2fa2868b7f85d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 371 } Some(" as core::iter::traits::iterator::Iterator>::next::h3f20a1673404711c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2613 } Some("serde_json::de::ParserNumber::invalid_type::h6ea62dbcf52ef644") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1383 } Some("serde_json::de::Deserializer::end::h00d8ede6190f456d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 402 } Some("platform_mem::_::>::shrink::h3ec447a864ed7b97") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 407 } Some(">::into::h2aaf0cd5e3452fd2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2742 } Some("serde_json::read::SliceRead::skip_to_escape_slow::hdce4ca3f4d2ab7ee") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2760 } Some("core::slice::::starts_with::hff85c7cb753fe590") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 740 } Some("wasm_bindgen::convert::impls::::ref_from_abi::he69b81fb406c8106") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2846 } Some("::to_vec_in::ConvertVec>::to_vec::h54761724f40bd542") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5105 } Some("wasm_bindgen::convert::impls::>::return_abi::h61b155a988dd0b96") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1717 } Some("alloc::collections::btree::navigate::,alloc::collections::btree::node::marker::Edge>>::next_unchecked::{{closure}}::h48ab25c9c66c0f0c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5508 } Some("core::alloc::layout::Layout::from_size_align::hb89c1a1f338e13d8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1764 } Some(" as serde_core::ser::SerializeMap>::serialize_value::he6d335e653ae5b4f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5781 } Some("alloc::sync::Arc::drop_slow::h6f6f1046012c8732") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1766 } Some(" as serde_core::ser::SerializeMap>::serialize_value::h849f45c41b831d2e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3019 } Some("::next_match::hd333e0ac9b63912d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2594 } Some("core::alloc::layout::Layout::repeat::hc450ceb15b73d602") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 519 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h184fa0a2a0c5643c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 138 } Some(" as core::fmt::Display>::fmt::h28e27c6715ad2af9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 777 } Some(">::into::hf83efc1eb5318ac0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1069 } Some("beef::generic::Cow::capacity::h6ecfa74abe6651b6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2758 } Some("core::alloc::layout::Layout::repeat::hc91f71894ecd6f1e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 527 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h99a49fedd4eeb6b9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1071 } Some(" as core::convert::From<&T>>::from::he9fb0a0cc514a3ea") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1139 } Some("doublets_web::LinksConstants::via_ranges::{{closure}}::hd7996b9be20e0a10") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5704 } Some("core::alloc::layout::Layout::repeat::he3661a30ab056cbb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1145 } Some("doublets_web::LinksConstants::full_new::{{closure}}::h537c8a1bbb2e6f65") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1186 } Some(" as platform_trees::lists::absolute_linked_list::AbsoluteLinkedList>::set_size::h82dbe49645fdb755") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5166 } Some("wasm_bindgen::convert::closures::_::invoke::hc046ddb8f5767e87") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2609 } Some("alloc::raw_vec::RawVecInner::grow_amortized::h9f526353e4a14b36") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1190 } Some(" as platform_trees::lists::absolute_linked_list::AbsoluteLinkedList>::set_first::h6fc3ff2da70cbf12") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1191 } Some(" as platform_trees::lists::absolute_linked_list::AbsoluteLinkedList>::set_last::had9a3b64e2e61707") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 185 } Some("test::bench::fmt_bench_samples::h9fd10b1e4563b7dd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1212 } Some("<[T] as platform_data::query::ToQuery>::to_query::h16883988f3057855") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1218 } Some("doublets_web::const_utils::to::{{closure}}::h3c73f4ca1a2054fc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2624 } Some("alloc::raw_vec::RawVecInner::grow_amortized::hcd8ae8ebd44f3cc4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1410 } Some("serde_json::de::Deserializer::parse_any_number::hd1aea84d4026a811") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 80 } Some("alloc::fmt::format::h2bd8357f2e01e143") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1451 } Some("serde_core::de::impls::>::deserialize::h45e320ef8f50db78") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1457 } Some("alloc::vec::Vec::push::h893d2a8fd821eacc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1217 } Some("alloc::fmt::format::heab3f0e013f9a26d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1486 } Some("serde_core::de::Visitor::visit_borrowed_str::h4a20eef5d921fa67") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5728 } Some("alloc::raw_vec::RawVecInner::grow_amortized::h421784e056aa1ea5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1488 } Some("serde_core::de::Visitor::visit_borrowed_str::h536ee94ac3aff152") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2000 } Some("alloc::fmt::format::h139cf36062c17171") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1490 } Some("serde_core::de::Visitor::visit_borrowed_str::h7ee52f183d2c5be5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1493 } Some("wasm_bindgen_test::__rt::criterion::estimate::_::::deserialize::h46f495aa75403482") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2623 } Some("alloc::fmt::format::heedb53bccf89c9d4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1496 } Some("wasm_bindgen_test::__rt::criterion::estimate::_::::deserialize::h44d4a4d8476fbfee") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5987 } Some("core::unicode::printable::is_printable::hc2278c0d26a86fbc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1500 } Some("wasm_bindgen_test::__rt::criterion::estimate::_::::deserialize::h8c8c2bb84aeae59c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2698 } Some("core::str::traits:: for core::ops::range::RangeTo>::get::h023764c4869fb2ac") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1584 } Some(" as serde_core::de::Deserializer>::deserialize_f64::h6d18f087ccdacefe") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1585 } Some(" as serde_core::de::Deserializer>::deserialize_seq::h5047fe241e350780") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4980 } Some("alloc::fmt::format::h5b12de644a85cba1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1616 } Some(">::into::h5401c9cd7b82f5b9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 770 } Some("core::result::Result::map_err::h06aa21af7f5c5f89") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5845 } Some("<&std::io::stdio::Stdout as std::io::Write>::flush::hc5e1d50c8306f0b8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 772 } Some("core::result::Result::map_err::h3716dbc4c7addd1b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1768 } Some(" as serde_core::ser::SerializeMap>::serialize_value::hc50e56c24f317c8a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2087 } Some(">::from::h165b6dfc73c5cdc4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 182 } Some("test::formatters::terse::TerseFormatter::write_pretty::hff0b129ce41b6251") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1770 } Some(" as serde_core::ser::SerializeMap>::serialize_value::ha1ea3369ca17efac") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2089 } Some(" as core::ops::drop::Drop>::drop::h3697498f600102e7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1671 } Some(">::extend::{{closure}}::h7f8121e418805bda") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1673 } Some("serde_core::de::impls::::deserialize::h501554b318919457") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2090 } Some(" as core::ops::drop::Drop>::drop::h572f64735eb9e506") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1676 } Some("serde_core::de::Visitor::visit_borrowed_str::h1666a99760e740fd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2092 } Some("::deserialize::hf506d3938c9ccea5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 187 } Some("test::formatters::terse::TerseFormatter::write_pretty::h4d30bdaf3ce6526a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1678 } Some("serde_core::de::Visitor::visit_borrowed_str::hbd9b41ae6727ee3b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2108 } Some("once_cell::unsync::OnceCell::get_or_init::{{closure}}::hbe20c6ce8a119c58") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1684 } Some("wasm_bindgen_test::__rt::criterion::_::::deserialize::h06cdeacd9ea6c73a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2153 } Some("alloc::rc::Rc::from_raw::h1e8b846400b4fa11") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 213 } Some("test::formatters::pretty::PrettyFormatter::write_pretty::h4446e27b17fa451b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1688 } Some("wasm_bindgen_test::__rt::criterion::_::::deserialize::hf5517a98983c8e16") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2200 } Some("core::ops::function::FnOnce::call_once::h7d5fc402a85cd0fe") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1822 } Some("serde_core::de::impls::>::deserialize::h7779d831f13d4b75") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2206 } Some("core::ptr::drop_in_place>>::h6927e4223402e126") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 217 } Some("test::formatters::pretty::PrettyFormatter::write_pretty::ha3968d34f5f70621") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2210 } Some("core::ptr::drop_in_place>::h8f43adf883abd2cf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1824 } Some("serde_core::de::impls::>::deserialize::hb60da2a17e4d1e22") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2220 } Some("core::ptr::drop_in_place>::h887573294acaeca2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2964 } Some("::fmt::hba13b1079e522288") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1867 } Some("wasm_bindgen::convert::impls::>::into_abi::hc730e50ed9710161") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2228 } Some("core::ptr::drop_in_place>>::hb3e957a2fca59b3d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2230 } Some("core::ptr::drop_in_place>>::h10ffc75e49735fca") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5990 } Some("core::slice::memchr::memchr_aligned::hbbff53fde1867734") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5167 } Some("wasm_bindgen::convert::closures::_::invoke::hceceb53d05f40f9d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2231 } Some("core::ptr::drop_in_place>>::h534de6bca5dced0a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2237 } Some("core::ptr::drop_in_place>>::ha9a5070a907e9b55") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 141 } Some("std::io::Write::write_all::h796a7c7f20337a8c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2238 } Some("core::ptr::drop_in_place>>::h0d5a0883607f4f26") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2239 } Some("core::ptr::drop_in_place>>::h4a2a77dca3102aae") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1772 } Some(" as serde_core::ser::SerializeMap>::serialize_value::he5fbf1371634d800") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 145 } Some("std::io::Write::write_all::hf29adcfe711b9b33") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2251 } Some("core::ptr::drop_in_place>::hdf851cecaa75a2f6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2258 } Some("core::ptr::drop_in_place::h294062da7933d5a8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 271 } Some("core::ptr::drop_in_place>>::h8788a19552c6c57f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2278 } Some("core::ptr::drop_in_place>::h7204268706807e42") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2279 } Some("core::ptr::drop_in_place>::h5b939f1ee2670cab") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1406 } Some("serde_json::de::Deserializer::ignore_decimal::hfcaf727c8a8546da") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 273 } Some("core::ptr::swap_nonoverlapping_bytes::h2320c662b87352f9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2280 } Some("core::ptr::drop_in_place>::h791a6c17856bebc4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2281 } Some("core::ptr::drop_in_place>::hb590548fbe0bb171") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2283 } Some("core::ptr::drop_in_place>::h6c6a1f6a71005a7f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5955 } Some("core::fmt::builders::DebugStruct::field::hd6fb479e598dd824") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2284 } Some("core::ptr::drop_in_place>::h2c09665ad3012de6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 840 } Some("doublets::mem::unit::generic::targets_recursionless_size_balanced_tree::LinksTargetsRecursionlessSizeBalancedTree::new::h7f8a62c50bb4f207") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2300 } Some("core::ptr::drop_in_place>>::h72a8e497e1dc638f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2344 } Some(" as core::ops::deref::DerefMut>::deref_mut::hd06cd1cbe975996e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 464 } Some("platform_data::constants::LinksConstants::full_new::hab43b642beaff447") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 969 } Some("doublets::mem::unit::generic::sources_recursionless_size_balanced_tree::LinksSourcesRecursionlessSizeBalancedTree::new::h185683df7618c68b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2358 } Some("wasm_bindgen_test::__rt::node::_::::into_abi::hc69d0f8b48fdbc5e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1925 } Some(">::into::h15ae1660f5dcc2c1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2366 } Some("wasm_bindgen_test::__rt::detect::_::::into_abi::hb9a3e254ff76e120") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1933 } Some("::return_abi::h79fadbbb97682bfb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1753 } Some("serde_core::ser::Serializer::collect_seq::h9b0ec49fe5a3b8ab") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2373 } Some("wasm_bindgen_test::__rt::detect::_::::into_abi::h0009ed62658298c4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1951 } Some(" as core::iter::traits::collect::IntoIterator>::into_iter::h056b10ab301a4476") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1986 } Some(">::into::hc0def13f4c545120") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2848 } Some(" as core::iter::traits::iterator::Iterator>::next::h4744b404eb600779") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5860 } Some("::fmt::hb9180c2d4ce39d24") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2001 } Some(" as core::ops::deref::Deref>::deref::hab4a30c5afedd09b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2035 } Some("wasm_bindgen::JsValue::from_bool::he69098bf2e700527") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5938 } Some("core::slice::index::slice_index_fail::hfe243a02a41519a0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2499 } Some("wasm_bindgen_test::__rt::Context::run::{{closure}}::h22db098aecc6f537") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2038 } Some("wasm_bindgen::convert::impls::::ref_from_abi::h4009eb173bf3b39c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2199 } Some("core::ops::function::FnOnce::call_once::h0db4a70228b2bccb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 471 } Some("doublets_web::const_utils::to::h313a114e3c272d08") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2348 } Some("serde_core::de::Visitor::visit_borrowed_str::h393a2170f87a2b21") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5129 } Some("wasm_bindgen::convert::closures::_::invoke::h0a7235ef71ae1da3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2387 } Some("wasm_bindgen_test::__rt::criterion::baseline::_::::deserialize::h56e6c05e8bc827f5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1516 } Some("core::str::iter::SplitInternal

::next_inclusive::h94cce2aa7fd9ccde") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2549 } Some("core::iter::traits::iterator::Iterator::peekable::heb27f98a7dbc0246") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5131 } Some("wasm_bindgen::convert::closures::_::invoke::h1157b2202afb7bb4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2736 } Some("serde_json::read::as_str::{{closure}}::hcb329a1d7d7c6398") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2775 } Some("serde_core::de::Visitor::visit_borrowed_str::h8e4884bacb021916") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1690 } Some(">::deserialize::VecVisitor as serde_core::de::Visitor>::visit_seq::h1941d51a1edc04a8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 436 } Some("wasm_bindgen::convert::impls::>::from_abi::hcdd8c3e380c607f2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2789 } Some(">::try_into::hfbe850116b9ddd2f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2837 } Some("alloc::vec::Vec::push::hfb3195f0a07273a1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1088 } Some("alloc::rc::Rc::new::h027d5bdfb6df49d0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4657 } Some("alloc::collections::vec_deque::VecDeque::push_back::hec3e6c5dd4dce05a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1613 } Some("core::result::Result::is_ok::h83dbc947717216c8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4899 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h4386425eb4adbb7e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1680 } Some("::deserialize::PrimitiveVisitor as serde_core::de::Visitor>::visit_f64::h37a645473f109bc9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5133 } Some(">::into::h6cf32017189e0586") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1402 } Some("serde_json::de::Deserializer::parse_decimal_overflow::h35f6f81ea3013dc5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5175 } Some(">::into::hd9313ef28c639fc3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5477 } Some("wasm_bindgen::convert::traits::WasmRet::join::h07b7e4b42efc01f7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1789 } Some("serde_json::ser::Formatter::end_object_key::ha537a9c5080874b4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5558 } Some("wasm_bindgen::convert::impls::>::from_abi::ha90c5db70a53a6af") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1746 } Some("serde_core::ser::Serializer::collect_map::hb46401acd1ea8496") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1790 } Some("serde_json::ser::Formatter::end_array_value::h1091d2dc2b9ee76f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5580 } Some("core::mem::drop::h88dc72c16f38d03b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1792 } Some("serde_json::ser::Formatter::end_object_value::h48c44cbb1ac79fc7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5591 } Some(">::into::h3b690650fa7a1119") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1801 } Some("alloc::collections::btree::map::BTreeMap::is_empty::hb2bc4b9efe2c0ffc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2295 } Some("core::ptr::drop_in_place<(wasm_bindgen_test::__rt::Test,wasm_bindgen_test::__rt::Failure)>::heb12ae4b0ecb1f08") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1840 } Some("wasm_bindgen::__rt::WasmWord::is_zero::hdbacf442b4cb7253") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2370 } Some("wasm_bindgen_test::__rt::detect::_::::from_abi::h15a593ef9a6a390d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2042 } Some("wasm_bindgen::convert::slices::unsafe_get_cached_str::h2cae937c78e6ed57") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2371 } Some("wasm_bindgen_test::__rt::detect::_::::from_abi::hb21a519bb8801078") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5592 } Some(">::into::h73c3ae0b7f59e0cb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2305 } Some("core::cell::Cell::set::h79793f75fced6290") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2376 } Some("wasm_bindgen_test::__rt::detect::_::::from_abi::had385ef8611fb515") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5686 } Some("alloc::vec::Vec::push::hc79bd3a8003fefe0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2306 } Some("core::cell::Cell::set::hf799ea0bd86e3b74") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2400 } Some("core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::h7995073dc4c5f8a9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1774 } Some(" as serde_core::ser::SerializeMap>::serialize_value::h0153c43d8dc25eb5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2317 } Some("core::cell::RefCell::new::hb4491e37346c315e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2406 } Some("core::iter::traits::iterator::Iterator::for_each::call::{{closure}}::ha4019e117d65f739") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2375 } Some("wasm_bindgen_test::__rt::detect::_::::is_none::h225b502c8a8f6817") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2412 } Some("js_sys::futures::task::singlethread::Task::spawn::{{closure}}::hc74dff804ba5c7ee") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1776 } Some(" as serde_core::ser::SerializeMap>::serialize_value::h8eb572b7e88675c6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2377 } Some("wasm_bindgen_test::__rt::detect::_::::is_none::h925dac1357a1635b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2435 } Some("wasm_bindgen_test::__rt::context_arg::he65f20820dfab4db") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2644 } Some("::rejecting::h5b93d4a73cd61ae6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2490 } Some("wasm_bindgen_test::__rt::Context::new::panic_handling::_::::from_abi::h91071ff8e1685661") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1778 } Some(" as serde_core::ser::SerializeMap>::serialize_value::h06ff96912919f4ba") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2813 } Some("core::ops::function::FnOnce::call_once::h08bcdf0b698bd4bb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2842 } Some("alloc::vec::Vec::is_empty::hcae8e474a52b0ef9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1797 } Some("core::iter::traits::iterator::Iterator::try_fold::h6cb09d2a1120cc44") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2888 } Some(" as core::ops::range::RangeBounds>::start_bound::h615bb5bcab457dbb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2903 } Some("::bitor::h2287585090a49a07") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2374 } Some("wasm_bindgen_test::__rt::detect::_::::into_abi::h37a4a22864041f78") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2403 } Some("core::char::methods::encode_utf8_raw::do_panic::runtime::he6d42e4dbd0c2fcd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2904 } Some("::bitand::hb07d3bca4311f3fe") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2432 } Some("wasm_bindgen_test::__rt::_::::into_abi::h0a5e3c770c488ec9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2999 } Some("::rejecting::ha0a47cc5469caa43") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2437 } Some("wasm_bindgen_test::__rt::_::::into_abi::h56337657f625ef61") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2576 } Some("core::ub_checks::maybe_is_nonoverlapping::runtime::he7ab9529b37a7321") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3176 } Some("js_sys::_::>::is_none::h632c6ac93b6d1af0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2491 } Some("wasm_bindgen_test::__rt::Context::new::panic_handling::_::::into_abi::h546869a14ce1e149") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3177 } Some("js_sys::_::>::is_none::h333000d1fc84e1c6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2511 } Some("::return_abi::hb2b13f8d749c1e29") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4634 } Some("core::cell::Cell::set::h5ce42ee0460e8be2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2619 } Some("core::ub_checks::maybe_is_nonoverlapping::runtime::h23256c9d784711cc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2555 } Some("::deref::h99deb082c0321eca") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2577 } Some("core::ptr::drop_in_place>::h8ab33f5d1e22508b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4880 } Some("wasm_bindgen::__rt::WasmWord::is_zero::h78c2db9e580f5e46") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2858 } Some("core::ub_checks::maybe_is_nonoverlapping::runtime::h6a6ed22d4e09cce2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2638 } Some("core::cmp::impls::::eq::h1cecde3f84d2c9f1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4894 } Some("wasm_bindgen::convert::closures::_::+Output = R> for T>::unsize::h0371b81dd8fb9695") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2640 } Some("core::fmt::rt::Argument::new_display::h31b9c9ff08993a17") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5234 } Some("core::result::Result::is_ok::hfc7cea3dfa05311c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2915 } Some("core::ub_checks::maybe_is_nonoverlapping::runtime::h4302aa2884338ff8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5449 } Some("wasm_bindgen::__rt::WasmWord::is_zero::h8a037344db8fa208") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2641 } Some("core::fmt::rt::Argument::new_display::haadc002990afc94b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5469 } Some("wasm_bindgen::convert::slices::unsafe_get_cached_str::h47ed07a55321f389") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2642 } Some("core::fmt::rt::Argument::new_debug::he1377f1f0fdcf272") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5693 } Some("::to_string::ha43afe4ea37338ea") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5840 } Some("core::ptr::drop_in_place::hf7b8d0e0fb4c83c3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2548 } Some("core::iter::traits::iterator::Iterator::enumerate::h3a8ce90d2c573f8d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5958 } Some("core::fmt::builders::DebugList::finish::hc753708777d978b0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5882 } Some("hashbrown::raw::Fallibility::alloc_err::h6877d27c2240a353") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2561 } Some("core::ops::range::RangeInclusive::new::h9d4bc2e560cd73aa") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5982 } Some("core::cell::panic_already_borrowed::hed79291954bfa6ad") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5923 } Some("core::fmt::num::imp::::_fmt::hcea67b2fcef29dc9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2580 } Some(" as core::ops::drop::Drop>::drop::h027fcaabc5a773ed") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5984 } Some("core::cell::panic_already_mutably_borrowed::hacc25964e8eff904") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5924 } Some("core::fmt::num::imp::::_fmt::h1ee9792adc5eb5dd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2586 } Some("core::hint::unreachable_unchecked::precondition_check::h823bddbecff21af4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6081 } Some("unitedlinks_each externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6088 } Some("wasm_bindgen::convert::closures::_::invoke::hf447a2bf89c17f58 externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2634 } Some(" as core::ops::drop::Drop>::drop::hdc41d64143e7ebfd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6096 } Some("unitedlinks_update multivalue shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 84 } Some("core::ops::function::FnOnce::call_once::h6ec4407ffa77d64f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2646 } Some("::matching::h2f19a32ca9f2735b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6099 } Some("__wbgtest_coverage_path multivalue shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 485 } Some("core::ptr::mut_ptr::::is_null::h672a8e75877fc402") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2648 } Some("::rejecting::h0ee3e8a5af2df939") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 487 } Some("core::ptr::mut_ptr::::is_null::heb89988c612b945e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 82 } Some("core::ops::function::FnOnce::call_once::h9cf55dfc9269879d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2650 } Some("::matching::hab6cc0023b2cd01a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 489 } Some("core::ptr::mut_ptr::::is_null::h652000434180c05f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2682 } Some("::spec_to_string::h2f61cc9c535f084d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 92 } Some("core::ptr::drop_in_place::{{closure}}>>::h6364b79613ecc26e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 491 } Some("core::ptr::mut_ptr::::is_null::h83722c3bf535f6c2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 191 } Some("::fmt::h34b4e6fd96ade791") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2737 } Some("serde_json::read::SliceRead::new::h92e2d194dfb7c663") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 521 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h3abf3f2b5d5a92a5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2738 } Some("serde_json::read::Reference::Copied::h45987fc87c76a5dd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 562 } Some("wasm_bindgen::convert::impls::::from_abi::hc08ab781fcc4fb50") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2739 } Some("serde_json::read::Reference::Borrowed::h612ee74e22e9acaf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1039 } Some("::drop::h9eded9cc56f1bbb3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2788 } Some("core::hint::unreachable_unchecked::precondition_check::haba1fc4845d18a07") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5173 } Some("wasm_bindgen::convert::closures::_::invoke::heea95d662c17a99e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1142 } Some("doublets_web::LinksConstants::new::_::__wasm_bindgen_generated_LinksConstants_new::{{closure}}::h70fff8fa7c5ddcb1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2864 } Some("core::hint::unreachable_unchecked::precondition_check::hf7183f7ca65a5004") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1229 } Some("doublets::data::traits::Doublets::create_by::{{closure}}::hb909946a800e3ec5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2892 } Some("::wrapping_sub::h598da47e0bc28b46") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1232 } Some("doublets::data::traits::Doublets::delete_by::{{closure}}::hcba61a95cbb0678b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2994 } Some("core::hint::unreachable_unchecked::precondition_check::hcf0ef8687f47a882") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5907 } Some("core::fmt::num::::fmt::h53aa0353012ac719") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1234 } Some("doublets::data::traits::Doublets::update_by::{{closure}}::hf0ae37925f88f107") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2660 } Some("::haystack::h16abf0fea804577e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1835 } Some("core::ptr::mut_ptr::::is_null::h4c6f4c3eb5490043") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2664 } Some("::deref::h9352fd3dfa0922fd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1845 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h046c3d45e5ae46ca") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 198 } Some("core::slice::sort::shared::smallsort::insertion_sort_shift_left::h929b5808a5cdffbb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1857 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h9f14246aafada2c1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2820 } Some("core::ptr::drop_in_place>::hc663cae1fc2c4b67") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1858 } Some("wasm_bindgen_test::coverage::_::__wasm_bindgen_generated___wbgtest_cov_dump::{{closure}}::hbaf64f23c4d3ceda") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2845 } Some(" as core::ops::deref::Deref>::deref::h907f7dfffa2115aa") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1859 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hd64d03b6c14dd215") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2890 } Some("::to_bits::h88b815c027686704") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3009 } Some("core::char::methods::encode_utf8_raw::do_panic::runtime::h8bd336ffc79e8085") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1860 } Some("wasm_bindgen_test::coverage::_::__wasm_bindgen_generated___wbgtest_module_signature::{{closure}}::h642676a1c2922bdb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2905 } Some("core::cmp::impls::::eq::h2ae644513d0741d3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1977 } Some("core::ptr::const_ptr::::is_null::hc7259c96a8214d06") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4631 } Some("core::ub_checks::maybe_is_nonoverlapping::runtime::h471e0c896061322b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1985 } Some(">::into::h29e193139772377c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2906 } Some("core::cmp::impls::::eq::h33011defa429d4e8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2023 } Some("::drop::hf31703a11fbd5131") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2907 } Some("core::cmp::impls::::ne::h5de632e2d7731f6c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 569 } Some("doublets_web::UnitedLinks::update::hfeeac7a144bf0b75") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5501 } Some("core::ub_checks::maybe_is_nonoverlapping::runtime::h812a66f7898d0e73") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2948 } Some("core::fmt::rt::Argument::new_display::he47c2ea5a50d9c81") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2951 } Some("core::fmt::rt::Argument::new_display::hc4590dcbf3847d35") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5698 } Some("core::ub_checks::maybe_is_nonoverlapping::runtime::hf3bcea9e80020694") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2717 } Some("::fmt::h529b37525173c5e8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2952 } Some("core::fmt::rt::Argument::new_display::hc7b17a54798c464d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2962 } Some("core::f64::::is_finite::h36ff1114f6c3e340") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2179 } Some("wasm_bindgen::convert::impls::::from_abi::ha5e28808ce331591") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 533 } Some("wasm_bindgen::__rt::WasmRefCell::into_inner::hebce1476746c0f97") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2963 } Some("core::fmt::rt::Argument::new_display::h1aa3707c1786c28a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5826 } Some("core::fmt::Write::write_char::h96f18f2e6fc7992f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2965 } Some("core::fmt::rt::Argument::new_display::h21bc4cfe2c2a16e9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2966 } Some("core::fmt::rt::Argument::new_display::h6903eee44991550d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 627 } Some("__wbg_set_linksconstants_external_range") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2967 } Some("core::fmt::rt::Argument::new_display::h6f470ee5727f3978") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4879 } Some("wasm_bindgen::__rt::WasmWord::into_usize::hefca4727673d5ff5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2968 } Some("core::fmt::rt::Argument::new_display::h83a897f269f2f605") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2326 } Some(" as core::default::Default>::default::h79df1d3c5b5ddcee") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 755 } Some("wasm_bindgen::convert::impls::>::return_abi::h4dc145c252e46cdd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2969 } Some("core::fmt::rt::Argument::new_display::h8a23008eee8ff6d8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5005 } Some(" as core::ops::deref::Deref>::deref::h0e5a49c17b46e55d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2388 } Some("wasm_bindgen_test::__rt::criterion::baseline::_::__wasm_bindgen_generated___wbgbench_dump::{{closure}}::hbcf1e15fd7a84679") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5022 } Some("::split::h464b6a2d4e98e350") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2970 } Some("core::fmt::rt::Argument::new_display::hd21b8abf8f10cda8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2893 } Some("::enlarge::h50c7acf9ff73dba3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 990 } Some("core::ops::function::FnOnce::call_once::hd20a976e6f7f7523") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5030 } Some(" as core::ops::deref::DerefMut>::deref_mut::hf78876633b3ac40f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2971 } Some("core::fmt::rt::Argument::new_display::he59897a8cd76a633") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4649 } Some("alloc::collections::vec_deque::VecDeque::new::hb9dbdef64c2b8cd9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5097 } Some("wasm_bindgen::convert::impls::::split::hfbe2660c0b872dba") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2972 } Some("core::fmt::rt::Argument::new_display::hfb701b7af90e4f96") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5124 } Some("wasm_bindgen::convert::impls::::from_abi::h77b1660c178ee991") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3001 } Some("::matching::h5b0eb5fb642bbcf4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5104 } Some("wasm_bindgen::convert::impls::::into_abi::haf8aeea646b19335") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1525 } Some("::next::h877f970b2fd4dd89") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3003 } Some("::rejecting::hbf9d5c4631238564") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5466 } Some("wasm_bindgen::convert::impls::::from_abi::h1af1ad30b1dd4ddb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5107 } Some("wasm_bindgen::convert::impls::::into_abi::h1f38bf514b23b1d6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 433 } Some("core::hint::unreachable_unchecked::precondition_check::h2963e9871e8d3928") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3005 } Some("::matching::h2e779f0ccf766c0a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5109 } Some("wasm_bindgen::convert::impls::::join::hbb92eaba1d1eb97a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2973 } Some("core::fmt::rt::Argument::new_debug::h5044f81403124f4c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 501 } Some("wasm_bindgen::__rt::WasmPtr::is_null::h5316e6b2646dd435") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5110 } Some("wasm_bindgen::convert::impls::::join::hd960286a35de393f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3011 } Some("core::iter::traits::iterator::Iterator::enumerate::h7a4178650f5565ea") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3028 } Some(">::into::hf03fecfb01624044") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 502 } Some("wasm_bindgen::__rt::WasmPtr::is_null::h72c0c1cba2564181") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3029 } Some("wasm_bindgen::cast::JsCast::unchecked_into::hffbb0bda2a9e3be0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5111 } Some("wasm_bindgen::convert::impls::::join::he8e73ccd4a63bd16") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 503 } Some("wasm_bindgen::__rt::WasmPtr::is_null::hfbaf18bbdf681547") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3170 } Some("js_sys::_::>::into_abi::ha9b5f2b52faa3ef6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5112 } Some("wasm_bindgen::convert::impls::::split::h6db24d31b4f03f37") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3157 } Some("js_sys::_::::from_abi::hdc0efc4266544546") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3172 } Some("js_sys::_::>::into_abi::ha415725b1f9d0ecc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 586 } Some("::is_none::hc3eaeaaca5163c8a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5113 } Some("wasm_bindgen::convert::impls::::from_abi::h0f45658e7ca7e3a6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3158 } Some("js_sys::_::::from_abi::h3d1781156c5e2395") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1861 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hdff71b8b76967a64") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3175 } Some("js_sys::_::>::into_abi::h7bd35376c6ad4fee") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3159 } Some("js_sys::_::::from_abi::he10d60af0c02e323") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3195 } Some("js_sys::_::::into_abi::h7cc880d6a4d27d43") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3160 } Some("js_sys::_::::from_abi::h1fad52488e902156") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2719 } Some("::next::ha78472e9f3eb7091") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3161 } Some("js_sys::_::::from_abi::ha223b1f217f92b56") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3213 } Some("js_sys::_::>::into_abi::h7cc6e9b8c9f05104") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2761 } Some("core::slice::::chunks_exact::h604a8d1ccd9922fa") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3162 } Some("js_sys::_::::from_abi::haf5422b1c44892e0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3163 } Some("js_sys::_::::from_abi::hbd3730b88e615334") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4512 } Some("wasm_bindgen::closure::_::::into_abi::h4cd60d7341adb2ec") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2929 } Some("zmij::select_if_less::hefac095b463d76be") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3164 } Some("js_sys::_::::from_abi::h46b5249f8017da36") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4513 } Some("<&wasm_bindgen::closure::ScopedClosure as wasm_bindgen::convert::traits::IntoWasmAbi>::into_abi::h528e1cba9501bed7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3165 } Some("js_sys::_::::from_abi::h9fd8d836be5193c5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 592 } Some("::is_none::h7d96e3e9371f1f64") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4514 } Some("<&wasm_bindgen::closure::ScopedClosure as wasm_bindgen::convert::traits::IntoWasmAbi>::into_abi::haa7f927670692569") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 57 } Some("core::panic::location::Location::line::hee3ee7a6dad258db") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3166 } Some("js_sys::_::>::from_abi::h4018237a6603154b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 596 } Some("::is_none::hfd6a18f80be3fce3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4528 } Some("wasm_bindgen::convert::impls::::from_abi::hbafbcd261892403f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3167 } Some("js_sys::_::::from_abi::h761656664dfe1499") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 58 } Some("core::panic::location::Location::caller::h08cc88ec4115e90b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 739 } Some("wasm_bindgen::convert::impls::::into_abi::hb943f4744605681e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4531 } Some("wasm_bindgen::closure::ScopedClosure::new::h5e4c8ed07eb234d3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3168 } Some("js_sys::_::::from_abi::h3326acf2b51f27da") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 59 } Some("core::panic::location::Location::column::h0da090475d03f86f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 68 } Some("<&mut T as core::ops::deref::Deref>::deref::hcfb96dd88b7537b5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3171 } Some("js_sys::_::>::from_abi::he52d783bcb68ef29") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4646 } Some(">::into::h0e99c230b3597214") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 833 } Some(" as doublets::mem::traits::UnitUpdateMem>::update_mem::h9e0ba8fbdff38562") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 240 } Some("::type_id::h1eef8976e6fdc501") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3174 } Some("js_sys::_::::from_abi::h3e5959d345b1386a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 872 } Some("doublets::mem::unit::store::Store::mut_source_root::h4b72b62dbef9e499") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 695 } Some("core::alloc::layout::Layout::size::hd43002323ff9523a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4647 } Some(">::into::h22ab3dc2f76cb39b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5506 } Some("core::ptr::mut_ptr::::is_null::h6df0b3f3491b100d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3194 } Some("js_sys::_::::from_abi::hd7ce7bfff32caa42") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 874 } Some("doublets::mem::unit::store::Store::mut_target_root::h4357e264220664eb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4668 } Some("::drop::h16e05a0c461f80e3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3206 } Some("js_sys::_::>::from_abi::hea25919bd2d8d106") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5801 } Some("std::thread::scoped::ScopeData::decrement_num_running_threads::hcf156ef603e44dae") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4670 } Some("::deref::hf5b66cd790fdfc47") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 904 } Some("core::cell::RefCell::new::h3895022f44096b60") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3209 } Some("js_sys::_::>::from_abi::he5a0a053aaf7ffd2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5866 } Some(" as core::fmt::Display>::fmt::hd56e563ba50f902a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 918 } Some("core::ops::range::RangeInclusive::new::h2e38abccd1b9d941") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5114 } Some("wasm_bindgen::convert::impls::::from_abi::h82a4fe6d87bf5018") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3210 } Some("js_sys::_::>::from_abi::h604bdb158df7d1b7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5871 } Some(" as core::panic::PanicPayload>::get::h5ded3ceb34b88fea") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3211 } Some("js_sys::_::>::from_abi::hb2a9c9b869f59916") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5915 } Some("::fmt::h0de301c805326a7a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5115 } Some("wasm_bindgen::convert::impls::::from_abi::hf469fdc2c5249095") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4671 } Some("::return_abi::h7d705982c5ee1c4f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3212 } Some("js_sys::_::>::from_abi::hb77e5b17cdb1cc33") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 696 } Some("core::alloc::layout::Layout::align::hd8d22e689a588fa4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5116 } Some("wasm_bindgen::convert::impls::::from_abi::hb82187bd0561e77a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 713 } Some("platform_mem::raw_place::RawPlace::cap::hd8a9fc1f46dbfe11") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5117 } Some("wasm_bindgen::convert::impls::::from_abi::h0ccb3d5a1ebbeaf6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4518 } Some("wasm_bindgen::cast::JsCast::unchecked_into::h12d9d1ae266970dd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 716 } Some("platform_mem::raw_place::RawPlace::dangling::hae974c991cd9fe7e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4520 } Some("wasm_bindgen::cast::JsCast::unchecked_into::h326341a48d0f47f5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5118 } Some("wasm_bindgen::convert::impls::::from_abi::h4beeb1ed5fe6dd7f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 741 } Some("wasm_bindgen::convert::impls::::into_abi::he72a5a3af2b41675") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4521 } Some("wasm_bindgen::JsValue::is_function::h84949b37ef78c678") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5119 } Some("wasm_bindgen::convert::impls::::from_abi::hdb4dc47005067358") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 748 } Some("<&T as thiserror::display::AsDisplay>::as_display::h4367d14238cc34fa") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5120 } Some("wasm_bindgen::convert::impls::::from_abi::h9340c61d7fd47770") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4522 } Some("wasm_bindgen::JsValue::is_undefined::h16d100738052ec02") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 907 } Some(" as core::ops::deref::Deref>::deref::h4780db338594742e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4676 } Some("js_sys::futures::task::singlethread::_::::into_abi::hfe8b998fb63a3761") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6039 } Some("js_sys::Function::call1::__wbg_call_a41d6421b30a32c5::h7bf220076e742579 externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4527 } Some("wasm_bindgen::closure::_::::from_abi::he40ebbb407533fd2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5121 } Some("wasm_bindgen::convert::impls::::from_abi::h37cbdc31a504ca56") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4693 } Some(" as core::ops::deref::DerefMut>::deref_mut::h813553bab140db9d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4534 } Some("wasm_bindgen::convert::impls::::into_abi::he1a120933c17ae63") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6090 } Some("wasm_bindgen::convert::closures::_::invoke::ha8c4170fe38cfc72 externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5122 } Some("wasm_bindgen::convert::impls::::from_abi::h5fddf38ed1f14780") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4639 } Some("core::cell::Cell::replace::hd651510bbc22bdbd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 87 } Some("core::ops::function::FnOnce::call_once::hedf70c5e42f14827") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4907 } Some("core::ops::function::FnOnce::call_once::hb9eca2575103dfdf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5123 } Some("wasm_bindgen::convert::impls::::into_abi::hd4b3405b08b38f76") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4917 } Some("core::ptr::drop_in_place>>::ha0915457ff5eb792") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 95 } Some("core::cell::Cell::get::h02648caa40155a67") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4658 } Some("::clone::h927cab4e68f0a64c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 367 } Some("::fmt::h2f45cc0f22f3f1c8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4681 } Some("js_sys::futures::task::singlethread::Task::force_wake::{{closure}}::hc8e3e2f8ee08cf20") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 700 } Some("core::ptr::non_null::NonNull::cast::hed6f744fae428746") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4918 } Some("core::ptr::drop_in_place>>::h2a7c75f09909a47e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4745 } Some(" as core::ops::drop::Drop>::drop::h3a5d34b7755ad4dd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 703 } Some("core::ptr::non_null::NonNull<[T]>::len::h36a867029b46542a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4926 } Some("core::ptr::drop_in_place>>::h76879760e7bb066e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4949 } Some("core::ptr::drop_in_place::h6cd1cdf2dcb0fb14") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 704 } Some("core::ptr::non_null::NonNull<[T]>::len::hf66414c01487a81a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4951 } Some("core::ptr::drop_in_place::h5f520c04274badd9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 973 } Some("beef::wide::::maybe::h37bda65cc3d5c416") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4930 } Some("core::ptr::drop_in_place>>>::h3f4d350985f54746") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1112 } Some("alloc::rc::Rc::as_ptr::h980d849846ba2af3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4961 } Some("core::hint::unreachable_unchecked::precondition_check::h9537ea54cfe88f31") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1113 } Some("alloc::rc::Rc::as_ptr::heb3394050ca573ce") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5007 } Some("js_sys::futures::queue::Queue::push_task::h813f4faf029b742e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4932 } Some("core::ptr::drop_in_place>>>::h8c019e7aecb945e5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1259 } Some(">::into::h0781a15005557479") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5225 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h790f37b07425e955") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2158 } Some("alloc::rc::Rc::as_ptr::hdc25d5595ee3d71d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4933 } Some("core::ptr::drop_in_place>>>::hf22a7ebd508735a7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5226 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h81fa4610412483fe") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2313 } Some("core::cell::RefCell::into_inner::h7f653192e668bd1b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2669 } Some("core::str::::len::h666ee53508f1faf6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5227 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::hd1b39127e7071198") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4939 } Some("core::ptr::drop_in_place+Output = core::result::Result<(),wasm_bindgen::JsError>>>::hc8b951ad0a661012") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2924 } Some(">::into::h8130d9f262128123") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5467 } Some("wasm_bindgen::convert::slices::::is_none::he36a2ae3f6db577b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4519 } Some(">::into::h9af36b05535e7507") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4962 } Some("core::panic::location::Location::file::h5d1e1090dd5549fe") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5505 } Some(" as core::ops::drop::Drop>::drop::h661f070b33a4a045") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4995 } Some("::return_abi::h3b9e9931916f5781") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4974 } Some("alloc::rc::Rc::from_raw::h10c0e586a7c98f2e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5588 } Some("core::hint::unreachable_unchecked::precondition_check::h68f4bcd0663ae901") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5026 } Some(" as core::convert::From>::from::h618ba19a0e02aaa8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5136 } Some(">::into::h59abffe456b8a84a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5702 } Some("core::hint::unreachable_unchecked::precondition_check::h542af8401c2ee558") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5584 } Some("core::cell::Cell::get::hd20c0bf5b1185c9a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5714 } Some(" as core::ops::drop::Drop>::drop::haa8b0a1cf76dd430") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 908 } Some(" as core::ops::deref::Deref>::deref::h5295460b783a575d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4996 } Some("::return_abi::h89e1131825ca337f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5439 } Some("wasm_bindgen::__rt::WasmWord::from_usize::h9083f1291dfed705") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 909 } Some(" as core::ops::deref::Deref>::deref::he3ab24f38d4e53ec") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5441 } Some("wasm_bindgen::__rt::WasmWord::into_usize::hc70b0337089cb9ce") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4997 } Some("::return_abi::hb6f7c0d1f213bd95") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 910 } Some(" as core::ops::deref::Deref>::deref::hf09599854e36f8ae") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5456 } Some("wasm_bindgen::convert::impls::::split::h51d9ce292784827c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 911 } Some(" as core::ops::deref::DerefMut>::deref_mut::h1263135138cbb615") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5000 } Some("js_sys::futures::queue::_::::into_abi::h4a63cc7b5e1ad44e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5460 } Some("wasm_bindgen::convert::impls::::split::h40d17424b5fa532a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5006 } Some("js_sys::futures::queue::Queue::with::hfed0ead226d6c655") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5461 } Some("wasm_bindgen::convert::impls::>::from_abi::{{closure}}::haefa393d024f511c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 912 } Some(" as core::ops::deref::DerefMut>::deref_mut::h43ab72e0e3e1bbe5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5463 } Some("wasm_bindgen::convert::impls::::join::h88fa68e7475c4e08") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5464 } Some("wasm_bindgen::convert::impls::::join::hd309032bd73d10e3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 965 } Some(" as doublets::mem::traits::UnitUpdateMem>::update_mem::hc31bc2a6942c8027") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5786 } Some("std::alloc::rust_oom::{{closure}}::hd75745f6cab4b1f8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 913 } Some(" as core::ops::deref::DerefMut>::deref_mut::he8b1cd7a0e00c386") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5465 } Some("wasm_bindgen::convert::impls::::join::hf90137bad67fb82d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 914 } Some(" as core::ops::deref::DerefMut>::deref_mut::hf59c6464fa6be95f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5881 } Some("hashbrown::raw::Fallibility::capacity_overflow::h99a4c32684b92cb7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 978 } Some("core::ops::function::Fn::call::h2373d5791bc2a4e4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5530 } Some("::join::h265c560520a3d589") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1170 } Some(" as core::default::Default>::default::hd2a273909774c788") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 71 } Some(" as core::future::future::Future>::poll::{{closure}}::heebf1fc07085de0b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5531 } Some("::split::h4471846690866a9e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5960 } Some("core::fmt::Formatter::debug_tuple::h193d988937616dd3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 979 } Some("core::ops::function::FnMut::call_mut::hf6897a2d7dca70a5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1199 } Some("<&T as thiserror::display::AsDisplay>::as_display::h7e44dda8c7fb9c73") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 278 } Some("core::ptr::drop_in_place::h23cbd4e4ed2623d1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 980 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h3da666d2a841acab") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5566 } Some("wasm_bindgen::JsValue::_new::he79cd61ebcafa2d5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1237 } Some("<&T as thiserror::display::AsDisplay>::as_display::h4f5a20e49a0072cf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 370 } Some("hashbrown::raw::RawTable::reserve_rehash::{{closure}}::he5a839918c3a81ba") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5611 } Some(">::from::h5e5da8f09695cb7f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1240 } Some("<&T as thiserror::display::AsDisplay>::as_display::h312ca507b4f0b339") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1028 } Some(" as core::ops::drop::Drop>::drop::hd7f34f2cc66093c5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 375 } Some("core::ptr::drop_in_place,getopts::Options::usage_items::{{closure}}>>::hcbeccf0efb6c2286") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5941 } Some("core::panicking::panic::h0149fc8f1656305a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1050 } Some("core::ptr::drop_in_place>::h8b66b7ea5b76b270") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6006 } Some("::fmt::hbcd850b988e2ebc5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1244 } Some("wasm_bindgen::convert::impls::::into_abi::he4af462537f37ef2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5018 } Some(" as core::ops::deref::Deref>::deref::h4e3db90156ce58fd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1055 } Some("core::ptr::drop_in_place>::hac934592f53840fd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6042 } Some("wasm_bindgen_test::__rt::worker::WorkerError::stack::__wbg_stack_e914725ec1a4a021::h3c121a944316a28e externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5019 } Some(" as core::ops::deref::Deref>::deref::h96e77f1f054be411") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 846 } Some(" as doublets::data::traits::Links>::constants::hc8fd38c4f266fb34") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1056 } Some("core::ptr::drop_in_place>::h445f5fc00dbaebf4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6044 } Some("wasm_bindgen_test::__rt::browser::BrowserError::stack::__wbg_stack_5f3026c9cb27e9a3::h4ea9f272c3dbf802 externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6018 } Some(" as core::fmt::Debug>::fmt::h642e5eea88bb5ba2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5205 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h91968d5648fca91d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 894 } Some("core::cell::RefCell::into_inner::hfaf78cd4925674ad") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6051 } Some("js_sys::Promise::new_typed::__wbg_new_typed_1137602701dc87d4::h45b5b2c7181d49f8 externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 917 } Some("core::ops::range::RangeInclusive::end::h481abefd6dabf0fd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1173 } Some(" as doublets::mem::traits::LinksList>::attach_as_first::h4e15271d0b9eefa0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5206 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h91ef36b8eedebe3b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6093 } Some("unitedlinks_each externref shim multivalue shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1175 } Some(" as doublets::mem::traits::LinksList>::detach::h6a6aefb88dbe14f3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5214 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::hc2c040753109342f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6056 } Some("wasm_bindgen_test::__rt::detect::Scope::constructor::__wbg_constructor_d15f058d68158e7a::hd3362bf045a71613 externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1177 } Some(" as doublets::mem::traits::UnitUpdateMem>::update_mem::hd8a9f099dc85adfa") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1301 } Some("<&T as thiserror::display::AsDisplay>::as_display::h486b04fba6cce84a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1100 } Some("alloc::rc::Rc::into_raw::h72c112580c166f81") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 81 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h1f9202e298fc4ae0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6059 } Some("wasm_bindgen_test::__rt::Global::performance::__wbg_performance_3550bf29533f0eae::h761fda9525a75c11 externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1461 } Some("alloc::vec::Vec::len::h6e63b512adc3790c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1258 } Some("console_error_panic_hook::_::::from_abi::hd54e7a5e09fd3918") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5245 } Some(" as core::ops::deref::Deref>::deref::h181f90030f3f11cf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1101 } Some("alloc::rc::Rc::into_raw::haef6a30fc193e62d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1462 } Some("alloc::vec::Vec::len::hd5dbf81813991eb6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 270 } Some("core::ptr::drop_in_place::{{closure}}::{{closure}}>::h167929b84d4be949") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1596 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h2af872ffb6a7c81b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6064 } Some("js_sys::Error::name::__wbg_name_bf92195f4668ab6e::hb59d329c653dfe26 externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1597 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h3999a1ed1c840ea6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1475 } Some(" as core::default::Default>::default::hb1a2d05b093c5472") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1476 } Some(" as core::default::Default>::default::hf2455cc120ed746f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1102 } Some("alloc::rc::Rc::into_raw::hd9684f55bb5b4751") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1598 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h4e56ed590c3ee902") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 336 } Some("test::cli::get_nocapture::h31d732b9287cef59") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1982 } Some("core::panic::location::Location::line::h1b5ddbd9e31f0a6a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1103 } Some("alloc::rc::Rc::into_raw::hda077f6677eaf20c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1599 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h50f819a706cdc430") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1248 } Some("core::mem::forget::h07a800d957d48972") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1983 } Some("core::panic::location::Location::caller::hc1faf4105e3d262b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1380 } Some("serde_core::de::SeqAccess::size_hint::hc17e5e7edc0c29af") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1984 } Some("core::panic::location::Location::column::h64fd19e2dbe7d57b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1600 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h8045081fc06415ed") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1714 } Some("core::mem::forget::h34f96365b56152d8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2039 } Some("wasm_bindgen::convert::impls::::into_abi::h8a405ad3d5c190e0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1601 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h91b74bbf7db6c7d4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2155 } Some("alloc::rc::Rc::into_raw::hd3267f096e32ebb4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 409 } Some(">::try_from::h2a0ac94768cf55fa") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1602 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::ha9d5c00a71882d27") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5247 } Some(" as core::ops::deref::Deref>::deref::h6fc848983543bc99") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6065 } Some("js_sys::Error::message::__wbg_message_d5628ca19de920d3::h546f703446101dae externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 573 } Some("doublets_web::LinksConstants::new::ha91b5abdc2555aeb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1603 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::hce337eeba48c026a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2303 } Some("core::cell::Cell::get::h2af7759e9f27ce88") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6066 } Some("js_sys::Promise::resolve::__wbg_resolve_9feb5d906ca62419::h7e416eb91c401a9e externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5278 } Some("once_cell::unsync::OnceCell::get_or_init::{{closure}}::h1db1fcb512f334ff") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1724 } Some(" as serde_core::de::Visitor>::visit_some::hbc5e5f0a24964f2f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6069 } Some("js_sys::futures::queue::Global::hasQueueMicrotask::__wbg_queueMicrotask_74d092439f6494c1::hae1f4b67154d3112 externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1744 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::ha9f325588b860fa6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5302 } Some("core::mem::drop::hed8569346e1245a2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6071 } Some("wasm_bindgen::__wbindgen_typeof::__wbg___wbindgen_typeof_b2c23837ad6cde31::hbf7a18403ba3626f externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5438 } Some("wasm_bindgen::__rt::WasmPtr::from_usize::hf3ece4c69ed7251e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1795 } Some(" as core::ops::function::FnOnce<()>>::call_once::hc3c37a00edb4b6ab") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1846 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h34ae96fbb34ba9d1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5440 } Some("wasm_bindgen::__rt::WasmPtr::into_usize::h35b0d9f977c8f4bf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1880 } Some("wasm_bindgen_test::__rt::browser::_::::from_abi::hd268e790db7ee2cd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5442 } Some("wasm_bindgen::__rt::WasmPtr::into_usize::h969f40d27534aaf9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6078 } Some("Closure(Closure { owned: true, function: Function { arguments: [Externref], shim_idx: 233, ret: Result(Unit), inner_ret: Some(Result(Unit)) }, mutable: true }) -> Externref externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1885 } Some("wasm_bindgen_test::__rt::browser::_::::from_abi::h0e9b70a98fe36302") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5443 } Some("wasm_bindgen::__rt::WasmPtr::from_ptr::h05adc3685aaeec9e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6080 } Some("Ref(String) -> Externref externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1890 } Some("wasm_bindgen_test::__rt::browser::Browser::new::{{closure}}::h099ad8b41a2036d0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5444 } Some("wasm_bindgen::__rt::WasmPtr::into_ptr::h96ab1168774cfec5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6089 } Some("wasm_bindgen::convert::closures::_::invoke::h3eead99c9f19c03d externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1980 } Some("core::hint::unreachable_unchecked::precondition_check::hed0397cc5cc7f012") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 77 } Some("::clone::hbb825911a66ab69e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5445 } Some("wasm_bindgen::__rt::WasmPtr::into_ptr::hee0149252360369a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2025 } Some("wasm_bindgen::JsThreadLocal::with::h6ccc402f3195edb9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 172 } Some("<&T as core::fmt::Display>::fmt::hf773c4034b461bc4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 827 } Some(" as doublets::mem::unit::generic::links_recursionless_size_balanced_tree_base::LinkRecursionlessSizeBalancedTreeBaseAbstract>::get_tree_root::h315cffcfe76c7d95") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5457 } Some("wasm_bindgen::closure::_::::into_abi::h2ad7ca548099dafc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 177 } Some(" as test::formatters::OutputFormatter>::write_discovery_start::h654e99c2a02d7ddd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5482 } Some("core::ptr::drop_in_place>::h0f4cb7c3c9ade067") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 178 } Some(" as test::formatters::OutputFormatter>::write_test_discovered::h5121f784aa565295") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2026 } Some("wasm_bindgen::cast::JsCast::unchecked_into::h2560cb2a2509f4b7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5489 } Some("core::fmt::rt::Argument::new_display::h5d7d8acda1560494") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 179 } Some(" as test::formatters::OutputFormatter>::write_discovery_finish::h63d7ad06cecc3c2b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 247 } Some("core::ptr::drop_in_place>::hc2e0da7484a5bd5e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5490 } Some("core::fmt::rt::Argument::new_display::he59e6805bfb890ab") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2027 } Some("wasm_bindgen::cast::JsCast::unchecked_into::h2cf7c493e1d02333") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 722 } Some(" as platform_mem::raw_mem::RawMem>::grow::{{closure}}::hfff4b14c4fa4cfca") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 891 } Some("core::cell::RefCell::into_inner::h728cc30c0b0f7584") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1220 } Some("::clone::h2b0f98eb51f32334") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2028 } Some("wasm_bindgen::cast::JsCast::unchecked_into::hb294f68764af1e4c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5491 } Some("core::fmt::rt::Argument::new_debug::haff09de59ed594e2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1227 } Some("platform_data::hybrid::Hybrid::half::he58fff009d723199") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5554 } Some("wasm_bindgen::convert::impls::::from_abi::h1690b958be7dbc50") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2029 } Some("wasm_bindgen::JsValue::is_undefined::h39d4bf39cc172f8a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1319 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h418e9dc8153cb39d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5564 } Some("wasm_bindgen::throw_str::he112b346723bf09c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1987 } Some("::clone::hf399e6e2dff7f61c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 955 } Some(" as doublets::mem::unit::generic::links_recursionless_size_balanced_tree_base::LinkRecursionlessSizeBalancedTreeBaseAbstract>::get_tree_root::h833e814d3089d191") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5603 } Some("::drop::hcc42a4ff474a91aa") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2452 } Some("wasm_bindgen_test::__rt::__wbgtest_console_log::{{closure}}::h3c3347e4d02c707e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2037 } Some("wasm_bindgen::convert::impls::::into_abi::h8e09e0cd772070a6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2304 } Some("core::cell::Cell::get::hb6aed766233a6479") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2510 } Some("<() as wasm_bindgen_test::__rt::Termination>::into_js_result::ha22d98a9bca2f904") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2454 } Some("wasm_bindgen_test::__rt::__wbgtest_console_info::{{closure}}::hac0cc9fad5c6a12d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1185 } Some(" as platform_trees::lists::absolute_linked_list::AbsoluteLinkedList>::get_size::h0f832f35c57b106f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2070 } Some("::clone::hc21ef27f8d197923") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2328 } Some(" as core::ops::deref::Deref>::deref::h08a3cfe482abac7f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2456 } Some("wasm_bindgen_test::__rt::__wbgtest_console_warn::{{closure}}::h245c87b6f1a66f2c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1189 } Some(" as platform_trees::lists::absolute_linked_list::AbsoluteLinkedList>::get_first::h868cb724f358fb47") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2329 } Some(" as core::ops::deref::Deref>::deref::h55011fb5a7d60fb0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2460 } Some("wasm_bindgen_test::__rt::__wbgtest_console_error::{{closure}}::h7cb7aad337e8e0f6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4976 } Some("alloc::rc::Rc::into_raw::h050222ff742de408") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2330 } Some(" as core::ops::deref::Deref>::deref::h6418e8b91a745e4d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5020 } Some(">::start_bound::h28926f2e7c9e1271") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1192 } Some(" as platform_trees::lists::absolute_linked_list::AbsoluteLinkedList>::get_last::h065992913e399c2d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5021 } Some(">::end_bound::h5856658c096d3305") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2331 } Some(" as core::ops::deref::Deref>::deref::hfa369daf94da904c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5575 } Some("core::mem::forget::h4cdfa425527c4e0c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2334 } Some(" as core::ops::deref::Deref>::deref::h78c2c12514840fc1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2850 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h2a984e02c1e52dc7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2074 } Some(">::from::h8173f0d97f9cd423") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5735 } Some("__rustc[16f1505adc47261a]::__rdl_alloc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2335 } Some(" as core::ops::deref::Deref>::deref::he281885bcd1bed35") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1305 } Some("core::ptr::drop_in_place>::h9726bb2d3c354563") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4743 } Some(" as core::clone::Clone>::clone::hb83e1494d89db446") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2088 } Some(" as core::ops::drop::Drop>::drop::h1ed5d01752bf0f95") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2336 } Some(" as core::ops::deref::DerefMut>::deref_mut::h31fbbf119a7d8037") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5690 } Some(" as core::ops::deref::DerefMut>::deref_mut::h094524436433d56e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4967 } Some("::clone::h52484e049f910dbd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5568 } Some("core::mem::forget::h021b662311e5ae0e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1389 } Some("serde_json::de::Deserializer::next_char::h4fed36ab9a472079") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2337 } Some(" as core::ops::deref::DerefMut>::deref_mut::h6a042e93474ea68a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5773 } Some("std::io::stdio::stdout::h84cc5ca3d51f1882") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2338 } Some(" as core::ops::deref::DerefMut>::deref_mut::h7b01e704ee0f3589") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5969 } Some("core::fmt::Formatter::write_str::h906c9016730dabac") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6038 } Some("doublets_web:: for wasm_bindgen::JsValue>::from::__wbg_link_new::h505d0aae19e58f47 externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5710 } Some("core::fmt::rt::Argument::new_display::hca5f4de9c818c50f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1401 } Some("serde_json::de::Deserializer::peek::h45cc184df2e05c30") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2121 } Some("core::num::nonzero::NonZero::new_unchecked::precondition_check::he7566e2a8ed1bc91") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1587 } Some(" as serde_core::de::Deserializer>::deserialize_option::h7cc9d59dd4777c01") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6079 } Some("F64 -> Externref externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2339 } Some(" as core::ops::deref::DerefMut>::deref_mut::h98cffa230a25983b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5812 } Some("core::ptr::drop_in_place>>::hd8232a1684e31e26") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2340 } Some(" as core::ops::deref::DerefMut>::deref_mut::hcc5e2c851b9cc142") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2131 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h9411c93d2ad365d6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5712 } Some("core::ptr::drop_in_place>::h89224ef1e694888c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5815 } Some("<&T as core::fmt::Debug>::fmt::h21ffb6f0cd9e9cb7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1588 } Some(" as serde_core::de::Deserializer>::deserialize_option::h9fa3836a22933a95") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2186 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h3273146451fb539d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5824 } Some("core::fmt::Write::write_char::h228193457b3d0032") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5762 } Some("std::io::stdio::set_output_capture::h1744639dfda214a1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1645 } Some(" as core::ops::try_trait::Try>::branch::h23dd8d291d24270b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5836 } Some("core::ptr::drop_in_place::h5f918006ef5d0ce0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5959 } Some("core::fmt::Formatter::debug_list::h25e734e3365b69f4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5837 } Some("core::ptr::drop_in_place>::h030fd0d7289f7c8a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2275 } Some("core::ptr::drop_in_place::h1a9496749a8d02da") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6087 } Some("wasmbindgentestcontext_run externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1874 } Some("wasm_bindgen_test::__rt::worker::_:: for wasm_bindgen_test::__rt::worker::WorkerError>::from::hb3e7b25c5650273e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5961 } Some("core::fmt::Formatter::debug_struct::h0241484531271418") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5838 } Some("core::ptr::drop_in_place::h8ea6a71b912c9b01") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2398 } Some("core::any::type_name::h9dcc85b11a3ff803") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1886 } Some("wasm_bindgen_test::__rt::browser::_:: for wasm_bindgen_test::__rt::browser::BrowserError>::from::hc82ae5d525e49a34") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5863 } Some(" as core::fmt::Write>::write_str::h5208c35ce97bc633") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6082 } Some("__wbgtest_console_debug externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6083 } Some("__wbgtest_console_error externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2291 } Some("core::ptr::drop_in_place>::hdfbc723c67d6d916") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5885 } Some("core::ptr::drop_in_place::ha81d5d6d1f64702a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5905 } Some("core::str::slice_error_fail::h6fff99a0df5e8008") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2506 } Some("<&mut T as core::ops::deref::Deref>::deref::h2fef3aff44c0d163") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6084 } Some("__wbgtest_console_info externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6085 } Some("__wbgtest_console_log externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5910 } Some("<&T as core::fmt::Debug>::fmt::h69c822ac52be0e12") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2639 } Some("core::f64::::to_bits::h7bf77e3341a348e7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6030 } Some("fmin") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6031 } Some("fmax") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2294 } Some("core::ptr::drop_in_place>::h28d4a5dc39ff7d9a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6086 } Some("__wbgtest_console_warn externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2673 } Some("alloc::string::String::len::hf8c885e298091b21") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6045 } Some("wasm_bindgen_test::__rt::browser::HTMLDocument::getElementById::__wbg_getElementById_ef2cf6fa058f410a::h0d488856efb326a9 externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5994 } Some("core::panicking::panic_const::panic_const_rem_by_zero::h4d91c9c4a6b3b2e4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6091 } Some("wasm_bindgen::convert::closures::_::invoke::h3eead99c9f19c03d externref shim multivalue shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6063 } Some("js_sys::Promise::then_map::__wbg_then_20a157d939b514f5::hfb3d87d18bca21f6 externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5995 } Some("core::panicking::panic_const::panic_const_add_overflow::hacec966df230a78f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2831 } Some("alloc::vec::Vec::new::h493a58a411744592") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6011 } Some("::write_char::he8d9f9d9e75b1905") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6092 } Some("unitedlinks_new multivalue shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5850 } Some("::fmt::h7326ece241f5b32c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2832 } Some("alloc::vec::Vec::as_mut_ptr::hd31395bf10f4cb72") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6040 } Some("console_error_panic_hook::Error::new::__wbg_new_227d7c05414eb861::h96cf0bd457cfbb2d externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6094 } Some("unitedlinks_create multivalue shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5854 } Some("::fmt::hc36cb7baeefa6fe9[2]") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2836 } Some("alloc::vec::Vec::len::hdd390a3cb5ed8040") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6048 } Some("wasm_bindgen_test::__rt::browser::DOCUMENT::init::__wbg_static_accessor_DOCUMENT_fa300f5b84193774::h7bd069f7cf5d4d89 externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6060 } Some("wasm_bindgen_test::__rt::Context::new::panic_handling::Error::new::__wbg_new_5aafc1bf3ffe858c::hd191ac0794e6e51a externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5867 } Some("::fmt::hc8d087d6955a60e5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 411 } Some("core::fmt::Arguments::new::h0e63fb7d5476fbfc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2861 } Some("core::ptr::const_ptr::::read::h46303cbf5d44d062") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 103 } Some("main") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 412 } Some("core::fmt::Arguments::new::h17f637a65c3161b6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5873 } Some("::get::h1386487f02069651") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2065 } Some("js_sys::_:: for wasm_bindgen::JsValue>::from::h27bba86da51a7ee6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5880 } Some("<&T as core::fmt::Display>::fmt::h9cdd48a673a61204") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2073 } Some(">::from::h65a77cc2ca1f7910") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5996 } Some("core::panicking::panic_const::panic_const_mul_overflow::hd708e9b99cb650ac") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 413 } Some("core::fmt::Arguments::new::h39aa6156124f6798") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 118 } Some("<() as std::process::Termination>::report::hd00948fd4bc21ca1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2862 } Some("core::ptr::const_ptr::::read::h88eae312c972f5d5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5918 } Some("<&T as core::fmt::Display>::fmt::h461148083df94021") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 414 } Some("core::fmt::Arguments::new::h79b74eb81dc15c83") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6007 } Some("core::panicking::panic_null_pointer_dereference::h9965f8d683852fee") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2075 } Some("js_sys::_::::unchecked_from_js::hfce30eb45465408a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 415 } Some("core::fmt::Arguments::new::h8a8ca1e03223b25c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6037 } Some("__wbindgen_object_clone_ref") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5997 } Some("core::panicking::panic_const::panic_const_neg_overflow::h9f3b8ec0ae5c0fec") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2082 } Some("js_sys::_:: for wasm_bindgen::JsValue>::from::he2fb39ec538fb4df") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 133 } Some("__rustc[16f1505adc47261a]::__rust_realloc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2083 } Some("js_sys::_:: for js_sys::Error>::from::h320494be668853f2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 132 } Some("__rustc[16f1505adc47261a]::__rust_dealloc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5998 } Some("core::panicking::panic_const::panic_const_shl_overflow::h7470eb4809974192") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2095 } Some("once_cell::unsync::Lazy::force::hb44749317447c111") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 416 } Some("core::fmt::Arguments::new::haac2802274826cd9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 155 } Some(" as test::formatters::OutputFormatter>::write_discovery_start::h27919639cdd84a0a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5999 } Some("core::panicking::panic_const::panic_const_shr_overflow::h8d21597beafe983a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2891 } Some("core::f64::::to_bits::h0e46f0d6b15908cd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6000 } Some("core::panicking::panic_const::panic_const_sub_overflow::hb693aabd08f741ac") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 156 } Some(" as test::formatters::OutputFormatter>::write_discovery_start::hae35e88cb8ea7dfc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4529 } Some("wasm_bindgen::convert::impls::::into_abi::h83643eb117802e62") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 417 } Some("core::fmt::Arguments::new::hd2007e2a82bc23da") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6001 } Some("core::panicking::panic_const::panic_const_async_fn_resumed::hf31a588042758372") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 258 } Some("core::fmt::Write::write_fmt::h9fc8a8135eae74ca") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6043 } Some("wasm_bindgen_test::__rt::worker::write_output_line::__wbg___wbg_test_output_writeln_ce1c14f3235de893::h913720e0481094d7 externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4654 } Some("alloc::collections::vec_deque::VecDeque::len::hae804b983c578514") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 418 } Some("core::fmt::Arguments::new::he8498a2e2d4c225e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5100 } Some("wasm_bindgen::convert::impls::::split::h6324ca57b3710a6e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4672 } Some(" as core::ops::deref::Deref>::deref::h239dbcba764459ca") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6047 } Some("wasm_bindgen_test::__rt::browser::Element::set_text_content::__wbg_set_text_content_63c250954481807a::h01d50cac0f190df9 externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5102 } Some("wasm_bindgen::convert::impls::::into_abi::h673f85832116441c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 419 } Some("core::fmt::Arguments::new::hedd4e56bbcafcee0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4690 } Some(" as core::ops::deref::DerefMut>::deref_mut::hd67fa727f9e01907") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 140 } Some("::fmt::hc36cb7baeefa6fe9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5734 } Some("__rustc[16f1505adc47261a]::rust_panic") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2097 } Some("once_cell::unsync::Lazy::force::hdc0f8beadbc7e340") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 147 } Some("<&T as core::fmt::Display>::fmt::h3ef42eb66c812564") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 526 } Some("wasm_bindgen::__rt::maybe_catch_unwind::h9590233c471b08dc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5768 } Some("std::thread::id::ThreadId::new::exhausted::he2ee573d11e97408") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2113 } Some("::set::Reset as core::ops::drop::Drop>::drop::hb5d1e590a29c5bab") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 530 } Some("wasm_bindgen::__rt::maybe_catch_unwind::hcf005c62c64abca2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 236 } Some("<&T as core::fmt::Debug>::fmt::habefc4ee4bdfc45f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 574 } Some("doublets_web::LinksConstants::clone::h4ac5f5dcfebbc90c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2134 } Some("core::str::::chars::h3785ce97266b5d34") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6050 } Some("js_sys::Array::for_each::__wbg_forEach_544291b320823e55::h9e5e36a561fe2bea externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5796 } Some("std::time::SystemTime::now::h117fb0e1b31e9273") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 686 } Some("::into_iter::h344272f51c1dbb35") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2359 } Some("wasm_bindgen_test::__rt::node::_:: for wasm_bindgen_test::__rt::node::NodeError>::from::h84f3b31e17e5a9d4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5797 } Some("std::time::Instant::now::hf50993aab856f626") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6067 } Some("js_sys::futures::task::singlethread::ConsoleTask::run::__wbg_run_c9143d3225a408b9::h760637beee3912a5 externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 687 } Some("::into_iter::hea1eaf8a287c87b9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 101 } Some("web::main::hdeb72fb9b6ea0d99") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5798 } Some("std::time::Instant::elapsed::hc5dc37a8ee7558a1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 131 } Some("__rustc[16f1505adc47261a]::__rust_alloc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4744 } Some(" as core::ops::deref::DerefMut>::deref_mut::he5ce52bb39aeebb5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 255 } Some("<&T as core::fmt::Debug>::fmt::hc8c657edbf359178") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 705 } Some(" as core::convert::From<&mut T>>::from::ha0d9b443f2bbbe2c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5827 } Some("core::fmt::Write::write_fmt::h013b0a37a1e05c3c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 735 } Some("wasm_bindgen::JsValue::as_f64::hbdd8b979e70bb213") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 737 } Some("wasm_bindgen::JsValue::as_string::h277acaecf309aecc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2378 } Some("wasm_bindgen_test::__rt::detect::_::::unchecked_from_js::h516d76dd6e6ddc9b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 326 } Some("test::__rust_begin_short_backtrace::h84a838cd21d301c5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 750 } Some("::to_string::h1ecab43a9a09d9c9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5828 } Some("core::fmt::Write::write_fmt::h19c1a3fd051d9427") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4963 } Some("core::panic::location::Location::line::ha170b57559382c9e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 134 } Some("__rustc[16f1505adc47261a]::__rust_alloc_zeroed") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5829 } Some("core::fmt::Write::write_fmt::h628b111ce4addafb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 374 } Some("<&T as core::fmt::Display>::fmt::hf1fb87bcf2844489") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2390 } Some("wasm_bindgen_test::__rt::criterion::baseline::BASELINE::{{closure}}::h322950ea6eb7daa1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5830 } Some("core::fmt::Write::write_fmt::h92d688dc804be37f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 158 } Some("<&T as core::fmt::Display>::fmt::h67dfb4d0bf2577a3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5831 } Some("core::fmt::Write::write_fmt::hf440b4af64a74d7d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 379 } Some("::fmt::hc36cb7baeefa6fe9[1]") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5884 } Some("core::fmt::Write::write_fmt::hcb33ccda108f2947") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 765 } Some("core::result::Result::unwrap_or_else::h104e78f521cfee57") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2448 } Some("wasm_bindgen_test::__rt::_::::unchecked_from_js::h0146e477cd118a7e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 468 } Some("platform_data::constants::LinksConstants::internal::hc27de12da97cbfca") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5897 } Some("alloc::raw_vec::capacity_overflow::h0af0840ea1b2ff66") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 884 } Some("doublets::data::traits::Doublets::create::h82670b650d265f3c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4964 } Some("core::panic::location::Location::caller::hfe35e21d1e78e91c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2091 } Some("::visit_unit::h8404862ff9a72fe2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4965 } Some("core::panic::location::Location::column::ha5d6af8388bbbb63") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 160 } Some("<&T as core::fmt::Display>::fmt::h8476cfea7f0c8e75") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2658 } Some(" as core::ops::try_trait::Try>::from_output::hca05b19d5a808dad") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5511 } Some("core::alloc::layout::Layout::size::hd07ec95be3a68db9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 256 } Some("<&T as core::fmt::Debug>::fmt::hdb2405ebf1184d9d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2449 } Some("wasm_bindgen_test::__rt::_::::unchecked_from_js::h5cebcbbb39c1bbc0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2803 } Some("::visit_unit::h30ddd0596c18d03c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5751 } Some("<&T as core::fmt::Display>::fmt::h919466cac3e4a537") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 257 } Some("<&T as core::fmt::Debug>::fmt::hdf219fc9e52246c8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2547 } Some("core::str::::chars::h048e6e1fcf473c8d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5908 } Some("<&T as core::fmt::Debug>::fmt::h3835acac6879dd8a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 324 } Some("test::__rust_begin_short_backtrace::h1237bf4e233d9ca4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2564 } Some("wasm_bindgen_test_shared::coverage_path::{{closure}}::h18e454ec2198a60b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5939 } Some("core::fmt::Write::write_fmt::had1338797e9284de") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5819 } Some("<&T as core::fmt::Debug>::fmt::h9901c6444d0d9de7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5974 } Some("core::panicking::panic_const::panic_const_div_by_zero::h8e4a0d4c04b4b1f1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 359 } Some("::fmt::ha795e604dc1e6ee6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5258 } Some("once_cell::unsync::Lazy::force::h6ffc63f8fbf639c9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5978 } Some("core::option::unwrap_failed::h351295eb7223eb75") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 921 } Some(">::index::hef58ed45d2d5adbe") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 365 } Some("::fmt::hfba551e94cd66ac0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5980 } Some("core::str::traits::str_index_overflow_fail::hb7c8eaa17252dedd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 981 } Some("core::ops::function::FnOnce::call_once::h9ace67a07c6442f1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 747 } Some("console_error_panic_hook::set_once::hec4532483466a860") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5744 } Some("__rustc[16f1505adc47261a]::rust_begin_unwind") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5553 } Some("wasm_bindgen::convert::impls::::into_abi::hf176ac91b6f65ac3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1897 } Some("wasm_bindgen_test::coverage::__wbgtest_cov_dump::h699d0e6b734488f8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1898 } Some("wasm_bindgen_test::coverage::__wbgtest_module_signature::h1524bbe8b35fb537") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5605 } Some(" as core::ops::deref::DerefMut>::deref_mut::h9279dd1347015134") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2565 } Some("wasm_bindgen_test_shared::coverage_path::{{closure}}::h56cb37a323e7f439") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2645 } Some("::use_early_reject::hc719e15527716149") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1195 } Some("doublets::mem::unit::generic::unused_links::UnusedLinks::new::h22282fabebbdd309") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5788 } Some("std::panicking::begin_panic::{{closure}}::h9ef78388e4651287") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2649 } Some("::use_early_reject::h6f69955973fddaa6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5684 } Some("alloc::vec::Vec::len::h07f8a9fc2c9c55ba") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1200 } Some("core::mem::transmute_copy::h4dfc488f66e98831") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3000 } Some("::use_early_reject::h6d63af151d965861") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5685 } Some("alloc::vec::Vec::len::ha559fbb279f8d959") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5805 } Some("std::panicking::begin_panic::h7d1195d41247f4ab") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3004 } Some("::use_early_reject::h0a4418f2e4451f87") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2566 } Some("wasm_bindgen_test_shared::coverage_path::{{closure}}::h9c9ba7401f741377") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5988 } Some("core::slice::sort::shared::smallsort::panic_on_ord_violation::he7e0843cdba42655") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3224 } Some("js_sys::global::h5f09634135f6797f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1037 } Some("core::ptr::drop_in_place>::hf2fefc0eb6d02a79") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2569 } Some("wasm_bindgen_test_shared::coverage_path::{{closure}}::hf46e87c03a50ad75") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5749 } Some("::type_id::h054965a0d695c3ae") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1228 } Some("core::ptr::slice_from_raw_parts::hae55a4b459222dc7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1041 } Some("core::ptr::drop_in_place>::hef43522679130aff") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5750 } Some("::type_id::h81f53a1fd46151f1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5435 } Some("wasm_bindgen::__rt::throw_null::hefd1c0dcf3c44a94") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5858 } Some("::fmt::h34a62ccd975ec13b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5436 } Some("wasm_bindgen::__rt::borrow_fail::h08dd7e153e6c34c8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1268 } Some("::to_string::h4c077a89ac2417a9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5437 } Some("wasm_bindgen::__rt::malloc_failure::h4dc5cc7caa9d6eb1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5891 } Some("alloc::raw_vec::handle_error::h9ace31a903e6893e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1042 } Some("core::ptr::drop_in_place>::hb17d5a885eccf7f9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5480 } Some("wasm_bindgen::convert::traits::WasmRet::join::he5145959346d19f5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5843 } Some("::write_fmt::hd8a7e2c6b9add45d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5747 } Some("__rustc[16f1505adc47261a]::__rust_alloc_error_handler") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6004 } Some("core::panicking::panic_nounwind::hae8ddcec6116b725") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1298 } Some("core::fmt::Arguments::new::h6264900c0f5ad4fe") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6019 } Some("::fmt::h5269b82f68123205") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2821 } Some("core::ptr::drop_in_place>::h775fd89fb05bb58c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5846 } Some("::write::ha16c49d65fddac8d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1299 } Some("core::fmt::Arguments::new::hf709e99e10dec820") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5848 } Some("::write_all::hcc7a74248ec9ba5d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 61 } Some(" as core::ops::deref::DerefMut>::deref_mut::h0ab77dcf2eae2e60") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1314 } Some("core::ptr::slice_from_raw_parts_mut::hdd5b119732fecc09") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 62 } Some(" as core::ops::deref::DerefMut>::deref_mut::h72d77b74b53b8f88") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5817 } Some("<&T as core::fmt::Debug>::fmt::h5415322229815c42") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2860 } Some("core::ptr::const_ptr::::read_unaligned::h968016853aead4ed") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1043 } Some("core::ptr::drop_in_place>::h451333922af2012f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5874 } Some("::as_str::he125ac6f7c5f4796") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6095 } Some("unitedlinks_delete multivalue shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 63 } Some(" as core::ops::deref::DerefMut>::deref_mut::h94c908b9a07801e8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3178 } Some("js_sys::_::::unchecked_from_js::h6fa100e70c5987d8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1324 } Some("serde_core::de::EnumAccess::variant::h0174868443b30c56") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1046 } Some("core::ptr::drop_in_place>::hdf81eae21f1f2464") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5879 } Some("<&T as core::fmt::Debug>::fmt::h0a40861eaf709258") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1058 } Some(" as core::ops::drop::Drop>::drop::h36345f32af175521") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1326 } Some("serde_core::de::EnumAccess::variant::h5a5cabeb195d4c31") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5883 } Some("alloc::alloc::handle_alloc_error::hec8d3aa2a30efaa7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3179 } Some("js_sys::_::>::unchecked_from_js::h2b4fad8dee64c965") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5886 } Some("::fmt::ha795e604dc1e6ee6[1]") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1328 } Some("serde_core::de::MapAccess::next_entry::h4b1f9ea23cfc06d0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1066 } Some("::deref::h156b9fefa14602a8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5900 } Some("::fmt::ha5e298d232615ddf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3181 } Some("js_sys::_::>::unchecked_from_js::hd61f90a0ddde247e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1330 } Some("serde_core::de::MapAccess::next_value::h03df1ef089d9e6e1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 75 } Some("alloc::boxed::convert::> for core::pin::Pin>>::from::h0091cd37cb6c732f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3205 } Some("js_sys::_:: for js_sys::Object>::from::h2ca29ee4279bbd7f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 56 } Some("core::panic::location::Location::file::h07a521b451c9f4c4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1332 } Some("serde_core::de::MapAccess::next_value::h1777c9c03bacdb53") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 108 } Some("wasm_bindgen::__rt::WasmWord::from_usize::hd4f6e85bc5650d20") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4673 } Some("js_sys::_::> for wasm_bindgen::JsValue>::from::h7d5e0b5b55b727db") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5906 } Some("<&T as core::fmt::Debug>::fmt::h35bf7829eeae90d2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 109 } Some("::split::h7e2eafc63f3ed6cd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5913 } Some("::fmt::h790d2f8117538842") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 113 } Some("::deref::h111f22d767b0c56c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 473 } Some("wasm_bindgen::__rt::WasmWord::from_usize::h4f02426390bf1e3a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5001 } Some("js_sys::futures::queue::_::::unchecked_from_js::h039fdf1a6871a90b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1334 } Some("serde_core::de::MapAccess::next_value::h31199a75bda9276f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 474 } Some("wasm_bindgen::__rt::WasmWord::into_usize::h28f8f5a93462f417") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 426 } Some("core::fmt::rt::Argument::new_display::h68281e2668dfb273") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1092 } Some("alloc::rc::Rc::from_raw::h004545f22bf58953") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1336 } Some("serde_core::de::MapAccess::next_value::h60180105b7f9d432") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5983 } Some("::fmt::h035f2721315d9af6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5242 } Some(" as core::ops::try_trait::Try>::branch::h53f1ab3393b464b8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5985 } Some("::fmt::h9295ee9cb44d499e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1338 } Some("serde_core::de::MapAccess::next_value::h630a93324df230df") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6041 } Some("console_error_panic_hook::Error::stack::__wbg_stack_3b0d974bbf31e44f::hf5f11f7bcc350eaf externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6046 } Some("wasm_bindgen_test::__rt::browser::Element::text_content::__wbg_text_content_39133fe2ceeea2bf::h468f77bf7b3d3478 externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1094 } Some("alloc::rc::Rc::from_raw::h843682a39ef3e3c4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5246 } Some("once_cell::unsync::Lazy::force::h87704631ccebcc6d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1340 } Some("serde_core::de::MapAccess::next_value::h82aa7a09bf68908f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1096 } Some("alloc::rc::Rc::from_raw::h993a33e06996c8ae") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5248 } Some("once_cell::unsync::Lazy::force::h9192367e184b747b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1342 } Some("serde_core::de::MapAccess::next_value::h9e6febfa2a61e13e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6052 } Some("wasm_bindgen_test::__rt::node::NodeError::stack::__wbg_stack_18dcc55b1429bfed::h701143b85b42ae48 externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1098 } Some("alloc::rc::Rc::from_raw::h99dfc389dd3e09bf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1344 } Some("serde_core::de::MapAccess::next_value::ha37ddb23fefe28d3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 427 } Some("core::fmt::rt::Argument::new_display::h7a4ba662bab37247") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6053 } Some("wasm_bindgen_test::__rt::node::NodeError::to_string::__wbg_toString_90f2e8a87f5b736e::h59560bcfca2ef56d externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1118 } Some("::return_abi::hf47c95b113492a07") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5256 } Some("once_cell::unsync::Lazy::force::h6251b415f1290396") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1346 } Some("serde_core::de::MapAccess::next_value::hdf52b08c853ec1fb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 476 } Some("::join::h511f38bca7d2609c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 477 } Some("::split::h5a169109aa7f225a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1713 } Some("core::mem::drop::hd57d41a695bab79e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 560 } Some("wasm_bindgen::convert::impls::::from_abi::he3fea96d482dccec") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6054 } Some("wasm_bindgen_test::__rt::detect::Constructor::name::__wbg_name_e75d30c26e8dc6aa::h6d6d5d86452430c7 externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1352 } Some("serde_core::de::MapAccess::next_key::h11dd0be9e027628c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1201 } Some("core::mem::drop::h1e41c036cf757a90") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 428 } Some("core::fmt::rt::Argument::new_display::h9303a54427fb946c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1354 } Some("serde_core::de::MapAccess::next_key::h80aa361fa3694c53") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1737 } Some("<&mut serde_json::ser::Serializer as serde_core::ser::Serializer>::serialize_none::hb04a7963f69d765f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1202 } Some("core::mem::drop::h5259e592d787493e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6061 } Some("wasm_bindgen_test::__rt::Context::new::panic_handling::Error::stack::__wbg_stack_5b90bbbb003d7e5c::hd67a8f76f0e830af externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1356 } Some("serde_core::de::MapAccess::next_key::h82dd21e746a0ae3b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1203 } Some("core::mem::drop::hb8bdf48d545fb1ee") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1783 } Some("serde_json::ser::Serializer::new::ha3d8678d7ef7ad7d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6062 } Some("wasm_bindgen_test::__rt::stringify::__wbg_String_9f1bc0c1cfdb8d71::h3529c1b56a136f43 externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 561 } Some("wasm_bindgen::convert::impls::::into_abi::hb3959a31c0ba161d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1358 } Some("serde_core::de::MapAccess::next_key::hc591fcfe6ae980da") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 429 } Some("core::fmt::rt::Argument::new_display::hcb360e032be08356") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 699 } Some("core::ptr::non_null::NonNull::cast::h309b9a4a543716fd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1836 } Some("wasm_bindgen::__rt::WasmPtr::from_usize::h5dc6fdafae5c52b8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 430 } Some("core::fmt::rt::Argument::new_debug::hf08cda75f62d13dd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1360 } Some("serde_core::de::MapAccess::next_key::hce94aadf08332a08") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1204 } Some("core::mem::drop::hbcd2464a7c665d80") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1362 } Some("serde_core::de::SeqAccess::next_element::h11bb3455d049e224") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6072 } Some("wasm_bindgen::__wbindgen_number_get::__wbg___wbindgen_number_get_dd6d69a6079f26f1::h100647e4733bde10 externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1838 } Some("wasm_bindgen::__rt::WasmPtr::into_usize::h823438668362aed9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1243 } Some("wasm_bindgen::convert::impls::::from_abi::h53d3060e8ea6ba74") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6073 } Some("wasm_bindgen::__wbindgen_string_get::__wbg___wbindgen_string_get_965592073e5d848c::h9bf2bccc9ff46f6b externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1364 } Some("serde_core::de::SeqAccess::next_element::h38e27bd54a83b886") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 733 } Some("wasm_bindgen::JsValue::_new::ha16e4c743f4850a1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6075 } Some("wasm_bindgen::__wbindgen_debug_string::__wbg___wbindgen_debug_string_07cb72cfcc952e2b::h27aeceb65d823ca6 externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 169 } Some(" as test::formatters::OutputFormatter>::write_timeout::hb8e274e0a5d55793") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1366 } Some("serde_core::de::SeqAccess::next_element::h438d5390f9680f1e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1841 } Some("wasm_bindgen::__rt::WasmPtr::from_ptr::h68af66d1a32256c3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 206 } Some(" as test::formatters::OutputFormatter>::write_discovery_start::h1c3a898bd3d5cbe7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1368 } Some("serde_core::de::SeqAccess::next_element::h559a3a5ff4eb8edc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 791 } Some(">::as_::h5b372a32802f9772") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 465 } Some("platform_data::constants::LinksConstants::via_only_external::h7548e4748282c906") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1842 } Some("wasm_bindgen::__rt::WasmPtr::into_ptr::hb5ad5fd670f1784d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 868 } Some("doublets::mem::unit::store::Store::get_header::{{closure}}::haa248c0050596b0b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 492 } Some("wasm_bindgen::__rt::WasmPtr::from_usize::h02f25270c268b829") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 870 } Some("doublets::mem::unit::store::Store::mut_header::{{closure}}::h0d6798cdc77bd638") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1370 } Some("serde_core::de::SeqAccess::next_element::hba79346e0ac3d40f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 228 } Some(" as test::formatters::OutputFormatter>::write_discovery_start::h3abb2fe99b6e3f32") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 871 } Some("doublets::mem::unit::store::Store::get_from_mem::{{closure}}::h62fb520cad5a1abd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 325 } Some("test::__rust_begin_short_backtrace::h4f2735b2fa27aff4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1871 } Some("wasm_bindgen_test::__rt::worker::_::::into_abi::hb33a2b5ce5bbbf07") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1372 } Some("serde_core::de::SeqAccess::next_element::hc522f502718e5f72") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 466 } Some("platform_data::constants::LinksConstants::default_target_part::h44f3588a9830b71b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 919 } Some("core::ops::range::RangeInclusive::start::h1b1012dbb90326d5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 970 } Some("core::num::nonzero::NonZero::get::h4546667579e67703") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1877 } Some("wasm_bindgen_test::__rt::browser::_::::into_abi::hfb419dea8b1717b2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 493 } Some("wasm_bindgen::__rt::WasmPtr::from_usize::h71e0304526007856") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 467 } Some("platform_data::constants::LinksConstants::new::h568c69eb809fff90") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 971 } Some("beef::wide::::len::h9691551b76aa8e40") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 470 } Some(" as core::default::Default>::default::h218af7dafc086af5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1374 } Some("serde_core::de::SeqAccess::next_element::hc78f3c5b45194348") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1253 } Some("::deref::h0d9af548af2e0d60") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1879 } Some("wasm_bindgen_test::__rt::browser::_::::into_abi::h2533f8388658df4c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 500 } Some("wasm_bindgen::__rt::WasmPtr::null::hdeed762302d4dabd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1172 } Some("doublets::data::link::Link::nothing::h5edc2d034d3b5fff") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1979 } Some("core::hint::unreachable_unchecked::h3bf89c6ca8fc78f1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1376 } Some("serde_core::de::SeqAccess::next_element::he11366ff2dd91ae4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1884 } Some("wasm_bindgen_test::__rt::browser::_::::into_abi::hd991d1e9ef00d25c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1260 } Some("console_error_panic_hook::_::::into_abi::h9d32255a66573c1e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2780 } Some("core::num::::from_le_bytes::h94fc3468a6c908e1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1936 } Some(" as core::ops::deref::Deref>::deref::hba17d8fc59f1bd7b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1293 } Some("core::fmt::rt::Argument::new_display::h5d3d3f01ea93ad1b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1378 } Some("serde_core::de::SeqAccess::next_element::hef15ac332dddd0c5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1241 } Some("wasm_bindgen::__rt::WasmWord::from_usize::he3587522c19d7b50") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5576 } Some("core::hint::unreachable_unchecked::hd175ada7640e94d2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1242 } Some("wasm_bindgen::JsValue::_new::hed2a3c78809df3f9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1937 } Some(" as core::ops::deref::Deref>::deref::hf8520bdb724b9247") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5745 } Some("std::sys::backtrace::__rust_end_short_backtrace::h46ab1174c51ef229") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1294 } Some("core::fmt::rt::Argument::new_debug::h29aac7e2bbcb4b1c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1425 } Some(" as serde_core::de::Deserializer>::deserialize_string::hd38a855cee4a0729") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 494 } Some("wasm_bindgen::__rt::WasmPtr::from_usize::hd0cf7bced2c0b311") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5759 } Some("std::io::impls::>::flush::h56e4d365292bad24") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1938 } Some(" as core::ops::deref::Deref>::deref::h8a8e7e3ded5d1c61") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1285 } Some("::split::hdb39610540596bc7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5785 } Some("std::sys::backtrace::__rust_end_short_backtrace::h81a6ec13af23b259") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1416 } Some("serde_json::de::VariantAccess::new::ha963cb193a8a43cd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1939 } Some(" as core::ops::deref::Deref>::deref::hb7a901cb7341ba2a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 495 } Some("wasm_bindgen::__rt::WasmPtr::from_usize::he68ea4f7afa4ef1e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5787 } Some("std::sys::backtrace::__rust_end_short_backtrace::h927847a9b64b20ac") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1417 } Some("serde_json::de::UnitVariantAccess::new::h62b150b4dc33314a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5799 } Some("std::alloc::default_alloc_error_hook::h4ae318a4060b4b2e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1348 } Some("serde_core::de::MapAccess::next_value::he634a5063cf46c63") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5807 } Some("std::panicking::panic_count::is_zero_slow_path::h9b5765c0b9fb1921") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1426 } Some(" as serde_core::de::Deserializer>::deserialize_identifier::h29db942a3a8fea01") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5841 } Some("core::panic::PanicPayload::as_str::h17c1d5120cb39a3f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1395 } Some("serde_json::de::Deserializer::eat_char::he0848c68cbb2a1f8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5853 } Some("::fmt::haae72e6c262f0a53") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1433 } Some(" as serde_core::de::VariantAccess>::unit_variant::h390905d6a46edd6d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1940 } Some(" as core::ops::deref::DerefMut>::deref_mut::h8016998ec8a8fa50") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1427 } Some(" as serde_core::de::Deserializer>::deserialize_identifier::h4d51f8f812459fd4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1784 } Some("serde_json::ser::Serializer::with_formatter::h61cda1a1ea8dbe28") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6027 } Some("fmod") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1432 } Some(" as serde_core::de::VariantAccess>::unit_variant::h178914141f4fe508") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 496 } Some("wasm_bindgen::__rt::WasmPtr::into_usize::h66b84b981254a07e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6055 } Some("wasm_bindgen_test::__rt::detect::This::self_::__wbg_self_fbd35b4e1b417b7c::h2ab2d04e3a232390 externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1941 } Some(" as core::ops::deref::DerefMut>::deref_mut::hc3fa4ff8310355a3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1465 } Some("alloc::vec::Vec::push::h093c9f7c106b85d0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6057 } Some("wasm_bindgen_test::__rt::detect::Scope::deno::__wbg_Deno_5568da40b5320910::hc10c4d17174ab809 externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 497 } Some("wasm_bindgen::__rt::WasmPtr::into_usize::h6837719eba7ffd4c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6058 } Some("wasm_bindgen_test::__rt::Performance::now::__wbg_now_e627993f858511c9::h5c47bfc2ae7cb37a externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6068 } Some("js_sys::futures::queue::queueMicrotask::__wbg_queueMicrotask_40ac6ffc2848ba77::h2bf8f862023310d5 externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1815 } Some(" as core::ops::deref::Deref>::deref::h14a584c2116e51e5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1954 } Some(" as wasm_bindgen::convert::traits::WasmAbi>::split::hd4f6c88f588e59bf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 498 } Some("wasm_bindgen::__rt::WasmPtr::into_usize::h6e898640c29a7e90") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6070 } Some("wasm_bindgen::closure::JsClosure::_wbg_cb_unref::__wbg__wbg_cb_unref_158e43e869788cdc::ha429d3dcc25e54b2 externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1837 } Some("wasm_bindgen::__rt::WasmWord::from_usize::h6c875bf0092e8e75") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6074 } Some("wasm_bindgen::__wbindgen_is_function::__wbg___wbindgen_is_function_2f0fd7ceb86e64c5::h814521277ec757f8 externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 499 } Some("wasm_bindgen::__rt::WasmPtr::into_usize::ha4102537dfc0cc35") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1971 } Some("core::fmt::rt::Argument::new_display::h52360f6343cee576") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1468 } Some("alloc::vec::Vec::push::hf40ef3713eb7b9fc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6076 } Some("wasm_bindgen::__wbindgen_is_undefined::__wbg___wbindgen_is_undefined_244a92c34d3b6ec0::h19f51646f33a3593 externref shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 287 } Some("core::ptr::drop_in_place>::h2564ae99f7a33ccc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1480 } Some(" as core::ops::deref::Deref>::deref::hf4ed53ac66b4109e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1428 } Some(" as serde_core::de::Deserializer>::deserialize_identifier::h8ac11dc1022f0525") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 593 } Some("::none::h7517e3fb72f43f1b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1972 } Some("core::fmt::rt::Argument::new_display::he2ee6aa9e1ac74ff") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 504 } Some("wasm_bindgen::__rt::WasmPtr::from_ptr::h069378b05652582e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 701 } Some("core::ptr::non_null::NonNull::dangling::h58d941188a5ad658") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 734 } Some("wasm_bindgen::JsValue::null::h8601a9ba3e2ad060") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1839 } Some("wasm_bindgen::__rt::WasmWord::into_usize::h9091e59251db6fd3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1947 } Some("::join::he40fd7c0c651c6ab") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1973 } Some("core::fmt::rt::Argument::new_display::hf91d40670b9fb5d8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1429 } Some(" as serde_core::de::Deserializer>::deserialize_identifier::h9af227cd0ea31ce9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1948 } Some("::split::h472bca09847a06de") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1974 } Some("core::fmt::rt::Argument::new_debug::h1e86de4d0d482958") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1430 } Some(" as serde_core::de::Deserializer>::deserialize_identifier::hc371f54ee69f5e7b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1952 } Some(" as core::iter::traits::collect::IntoIterator>::into_iter::h86b9e9aa2f258c3c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 505 } Some("wasm_bindgen::__rt::WasmPtr::from_ptr::h0c8c61600f5915f0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1975 } Some("core::fmt::rt::Argument::new_debug::hb4af09e30e6fc271") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1576 } Some("::deref::h03358cd976be1bc1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 506 } Some("wasm_bindgen::__rt::WasmPtr::from_ptr::h73f05d43bb26619c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2030 } Some("wasm_bindgen::JsValue::_new::hb64be214c6918383") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1981 } Some("core::panic::location::Location::file::hcff2ca430189fa9c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 507 } Some("wasm_bindgen::__rt::WasmPtr::from_ptr::hc7ce928e9732b7ea") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2004 } Some("::haystack::he1966de87391fdea") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2175 } Some("wasm_bindgen::convert::impls::>::into_abi::{{closure}}::he71a45813ac6780f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1434 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_f64::h8dd76a7ec5f355fd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2176 } Some("wasm_bindgen::convert::impls::::from_abi::h381b8e48f688f64a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2019 } Some(" as serde_core::de::DeserializeSeed>::deserialize::hd4de3702934cfde0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1443 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_string::hf8673a9274a69f4a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2177 } Some("wasm_bindgen::convert::impls::::from_abi::hc7c70bf843e5243d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2032 } Some("wasm_bindgen::JsValue::from_f64::hb6c7c119dbac59a7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1627 } Some("alloc::string::String::as_str::hcfc3f425c7306c42") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2036 } Some("wasm_bindgen::convert::impls::::from_abi::h9956cd58d1e46504") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 508 } Some("wasm_bindgen::__rt::WasmPtr::into_ptr::h3baf22e74b641f44") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1638 } Some("js_sys::futures::queue::Queue::with::h62004d5e420710f1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 509 } Some("wasm_bindgen::__rt::WasmPtr::into_ptr::h7fb2e9ae85bc0d1d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2064 } Some(">::into::h0f20596d601d6504") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1449 } Some("<&mut serde_json::de::Deserializer as serde_core::de::Deserializer>::deserialize_identifier::h98d1623575a0e125") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2178 } Some("wasm_bindgen::convert::impls::::from_abi::hd95f7f7c63db41b3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1675 } Some("serde_core::de::impls::::deserialize::hd1a5802d6747439c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2076 } Some("::return_abi::hc6491659295563b8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 510 } Some("wasm_bindgen::__rt::WasmPtr::into_ptr::h808421331d7404af") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2180 } Some("wasm_bindgen::convert::impls::::from_abi::h729237bfec38c6b3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1452 } Some("serde_core::de::impls::>::deserialize::h6401abed954e50e3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5374 } Some(" as core::default::Default>::default::h0b2a8ade62dc3d4b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5375 } Some(" as core::default::Default>::default::h546e92b39165eba2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5376 } Some(" as core::default::Default>::default::hbc234fcc56c56054") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1507 } Some("::deserialize::__Field as serde_core::de::Deserialize>::deserialize::h50faf72e7ea94916") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 511 } Some("wasm_bindgen::__rt::WasmPtr::into_ptr::hc6c1639edb79447c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2077 } Some("js_sys::_::>::into_abi::hbb6d46d815250a29") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5377 } Some(" as core::default::Default>::default::hfdb5241a0ee20b0a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 542 } Some(" as core::ops::deref::Deref>::deref::h1f723ecfedada55c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5733 } Some("__rustc[16f1505adc47261a]::__rust_start_panic") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2084 } Some("js_sys::_::>::into_abi::h5cf592afca69c1b4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5804 } Some("std::process::exit::h2ef840118ea4d501") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 543 } Some(" as core::ops::deref::Deref>::deref::h6455a5275dfecd6d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5832 } Some("core::ops::function::Fn::call::h0c31b1d6be91b17d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2327 } Some(" as core::default::Default>::default::hb8aca9fa012e97b7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5833 } Some("core::ops::function::FnMut::call_mut::ha7c9b915d5423954") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2707 } Some(">::borrow::h2a8951823075c1d5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2458 } Some("wasm_bindgen_test::__rt::__wbgtest_console_debug::{{closure}}::h693a3d009f51548b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5834 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h588436382d4c7816") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2876 } Some("<*const T as memchr::ext::Pointer>::as_usize::h0020fef5a666b961") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 135 } Some("__rustc[16f1505adc47261a]::__rust_no_alloc_shim_is_unstable_v2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2500 } Some("::into_future::h3fea191d7934b3a4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2894 } Some("::truncate::h75c97dca8274fa3b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1146 } Some("doublets_web::_::__wbg_get_link_id::assert_copy::hfc2d704a34cf1d9a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1147 } Some("doublets_web::_::__wbg_get_link_to_id::assert_copy::h93587e77a1b3a465") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 544 } Some(" as core::ops::deref::Deref>::deref::h748b500105c338ca") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1148 } Some("doublets_web::_::__wbg_get_linkrange_0::assert_copy::ha169366e22ef6580") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1149 } Some("doublets_web::_::__wbg_get_linkrange_1::assert_copy::h67515f30b2fd8dd9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1150 } Some("doublets_web::_::__wbg_get_link_from_id::assert_copy::h8b452cedc437ce12") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1508 } Some("::deserialize::__Field as serde_core::de::Deserialize>::deserialize::h3dbf21f64621a491") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 545 } Some(" as core::ops::deref::Deref>::deref::haad33f748f7b1300") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1151 } Some("doublets_web::_::__wbg_get_linksconstants_any::assert_copy::hce9a9b0a331b1ca4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1152 } Some("doublets_web::_::__wbg_get_linksconstants_skip::assert_copy::h3342cd72218d53b7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1153 } Some("doublets_web::_::__wbg_get_linksconstants__null::assert_copy::h4331532db08149f2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1512 } Some("::deserialize::__Field as serde_core::de::Deserialize>::deserialize::h7db8cb19045cad34") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1154 } Some("doublets_web::_::__wbg_get_linksconstants_error::assert_copy::hc1df493429a4edfb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1160 } Some("doublets_web::_::__wbg_get_linksconstants_target_part::assert_copy::he67b5a1090ce4421") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1155 } Some("doublets_web::_::__wbg_get_linksconstants__break::assert_copy::hf39c4f0f9cf4ee06") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1571 } Some("serde_core::de::impls::::deserialize::hd975fa0af98ff4d9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1161 } Some("doublets_web::_::__wbg_get_linksconstants_external_range::assert_copy::h1c5a1552881d516b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1572 } Some("serde_core::de::impls::::deserialize::hf6a8460bcd3171d4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1156 } Some("doublets_web::_::__wbg_get_linksconstants_itself::assert_copy::h93ad35a85e1e3c2a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1162 } Some("doublets_web::_::__wbg_get_linksconstants_internal_range::assert_copy::h1a9a99f0d2c3e802") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1157 } Some("doublets_web::_::__wbg_get_linksconstants__continue::assert_copy::h045818ea929d0f18") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1205 } Some("core::mem::forget::h4ebc103859813b77") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1674 } Some("serde_core::de::impls::::deserialize::hefc28970f284a0a4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 546 } Some(" as core::ops::deref::Deref>::deref::h24696d0fd37e4702") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1158 } Some("doublets_web::_::__wbg_get_linksconstants_index_part::assert_copy::hdbc47d3a25bf957e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1159 } Some("doublets_web::_::__wbg_get_linksconstants_source_part::assert_copy::ha04f1d5a36127959") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2895 } Some("::to_signed::h6f65a6ab7ef54685") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2554 } Some("::to_string::ha7b36e7013fc2050") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 547 } Some(" as core::ops::deref::Deref>::deref::hc30bbf6b077fb962") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3031 } Some(" as core::ops::deref::Deref>::deref::hc19706cf9c289bdd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 548 } Some(" as core::ops::deref::DerefMut>::deref_mut::h1ca23b4555df74a9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2563 } Some("::to_string::h15c4e0341138fac7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4523 } Some("wasm_bindgen::JsValue::_new::hca6e42f716706a86") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2617 } Some("core::str::converts::from_utf8_unchecked::h84ead5d5cf46313e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1875 } Some("wasm_bindgen_test::__rt::worker::Worker::new::h72173e7ac13d0b56") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4633 } Some("core::cell::Cell::new::hc19341270bd28a08") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2362 } Some("wasm_bindgen_test::__rt::node::Node::new::h61405ef143d370be") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1694 } Some("::deserialize::__Field as serde_core::de::Deserialize>::deserialize::h0e0d60929e71cdbe") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2679 } Some("::to_string::h22335d791bf57ee7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 549 } Some(" as core::ops::deref::DerefMut>::deref_mut::h53115f6ba9cc41ce") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5738 } Some("__rustc[16f1505adc47261a]::__rust_abort") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2681 } Some("::to_string::h26ff290cd57e7617") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4878 } Some("wasm_bindgen::__rt::WasmWord::from_usize::hf1857ed868f2cf49") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5757 } Some("std::io::impls::>::is_write_vectored::h113196f64bf3bb41") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 556 } Some(" as wasm_bindgen::convert::traits::WasmAbi>::split::h591939ab82191603") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2687 } Some("core::fmt::Arguments::new::h7946d7c0df4910ce") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2243 } Some("core::ptr::drop_in_place>>>::hba79d5c400318cc9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2688 } Some("core::fmt::Arguments::new::ha9658ec8507f5270") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1699 } Some("::deserialize::__Field as serde_core::de::Deserialize>::deserialize::h118ab8da81694388") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2689 } Some("core::fmt::Arguments::new::he4444c41ba5a08b5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1708 } Some("core::mem::transmute_copy::h40db479175aab98d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2246 } Some("core::ptr::drop_in_place>::h45054431124f71bf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 557 } Some(" as wasm_bindgen::convert::traits::WasmAbi>::split::h960e02b20f0a1d6a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2690 } Some("core::fmt::Arguments::new::he886e0c458c026b3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2248 } Some("core::ptr::drop_in_place::extend_trusted>::{{closure}}>::{{closure}}>::h7cf3d0ca6a8fb7ad") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2691 } Some("core::fmt::Arguments::new::hf3b3bb7403679d64") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2249 } Some("core::ptr::drop_in_place,alloc::collections::btree::node::marker::KV>::drop_key_val::Dropper>::h272a1482de0cfade") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1709 } Some("core::mem::transmute_copy::h5e39883d5345107a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2790 } Some("::fmt::h3566de559127a875") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2250 } Some("core::ptr::drop_in_place::hf5b623f902e9421b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1711 } Some("core::mem::transmute_copy::hc7d631d1403c9b59") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1712 } Some("core::mem::transmute_copy::hf89a0e785ad3d50e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2252 } Some("core::ptr::drop_in_place>::hfd404d41351dc7dd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2867 } Some("core::iter::traits::iterator::Iterator::rev::h168dfb08eeca7fc5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1745 } Some("serde_core::de::impls::>::deserialize::hcfb68db52dd9c765") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2878 } Some("::into_iter::h5311b400c3fa6c61") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 550 } Some(" as core::ops::deref::DerefMut>::deref_mut::hcf60cc239074ecf2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1823 } Some("serde_core::de::impls::>::deserialize::ha4e00c646aea4bc1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1825 } Some("serde_core::de::impls::>::deserialize::hffb1ff95958cd7f0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2950 } Some("core::fmt::Arguments::new::hf3efbc3c18f9b081") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 551 } Some(" as core::ops::deref::DerefMut>::deref_mut::hd10a90e5f9c0d004") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2978 } Some("core::fmt::Arguments::new::h2f6e1412c3d9f51f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 558 } Some(" as wasm_bindgen::convert::traits::WasmAbi>::split::h9f920138f9ff9050") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2979 } Some("core::fmt::Arguments::new::h30deaf1de56b08a6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 552 } Some(" as core::ops::deref::DerefMut>::deref_mut::h65e09863cfc10395") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 559 } Some(" as wasm_bindgen::convert::traits::WasmAbi>::split::hb54eb20d2777adbd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2980 } Some("core::fmt::Arguments::new::h34d46ee06ff1077e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 698 } Some("core::ptr::non_null::NonNull::new_unchecked::hdf2ab1b683297958") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 553 } Some(" as wasm_bindgen::convert::traits::WasmAbi>::join::h4d7af1a4ac33f8dc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2981 } Some("core::fmt::Arguments::new::h3ca8fe4ed18a8df8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2005 } Some(" as serde_core::de::DeserializeSeed>::deserialize::h195f1fa6dc887601") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 554 } Some(" as wasm_bindgen::convert::traits::WasmAbi>::join::hd7d5e1d62446d5ff") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 731 } Some("wasm_bindgen::convert::impls::::from_abi::h7eab9e8ab88a9d8e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 743 } Some("doublets_web::utils::set_panic_hook::hd6509c21a4478200") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 555 } Some(" as wasm_bindgen::convert::traits::WasmAbi>::join::hf79df3018638e27b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 738 } Some("wasm_bindgen::JsValue::js_typeof::h6a8073cd446124cc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2006 } Some(" as serde_core::de::DeserializeSeed>::deserialize::h2c69153c370507d7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2253 } Some("core::ptr::drop_in_place::h76dbf05924547ed7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2007 } Some(" as serde_core::de::DeserializeSeed>::deserialize::h3138d24b4d518ac5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1934 } Some(" as core::default::Default>::default::hcedb85763b32a8d6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 793 } Some("core::cmp::impls::::eq::h6dbe5e46f5bfd747") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2259 } Some("core::ptr::drop_in_place::hda7f30e4e74bf845") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1935 } Some(" as core::default::Default>::default::hf40a5debbb5f725b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2008 } Some(" as serde_core::de::DeserializeSeed>::deserialize::h471132e618470934") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2982 } Some("core::fmt::Arguments::new::h6ed1da762346a94f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2031 } Some("wasm_bindgen::JsValue::null::h64c7242e01b0f718") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2260 } Some("core::ptr::drop_in_place::h49364958aa09f709") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4526 } Some("wasm_bindgen::JsValue::undefined::hb8e5c488d29f8432") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2983 } Some("core::fmt::Arguments::new::h6eec552785114bee") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4533 } Some("wasm_bindgen::convert::impls::::none::h1efe05cc3227943b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2262 } Some("core::ptr::drop_in_place::h55231ba4873f2281") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2009 } Some(" as serde_core::de::DeserializeSeed>::deserialize::h5275d253aa88c8a8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4942 } Some("core::ptr::drop_in_place::h9826adac7c8c68c5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 794 } Some("core::cmp::impls::::ne::h7a4ad788d2047a7d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1682 } Some("::deserialize::PrimitiveVisitor as serde_core::de::Visitor>::visit_u64::hbf367f7a0c9c30af") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2010 } Some(" as serde_core::de::DeserializeSeed>::deserialize::h5eef1dfa806eb183") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2011 } Some(" as serde_core::de::DeserializeSeed>::deserialize::h711e960edc0232cd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2984 } Some("core::fmt::Arguments::new::h85f71f8b5cb9ef36") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1900 } Some(" as core::iter::traits::iterator::Iterator>::next::hfa0febe08291f688") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4943 } Some("core::ptr::drop_in_place::h8b109cbbd19bc3f5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2012 } Some(" as serde_core::de::DeserializeSeed>::deserialize::h799c72312534b4cd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2265 } Some("core::ptr::drop_in_place::h0dbc666ea546e0cd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1015 } Some("core::ptr::drop_in_place>>>::h3bc68a8378e28dd9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4944 } Some("core::ptr::drop_in_place::hfde02a3ce7793ef2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2266 } Some("core::ptr::drop_in_place::hbed2ce33b5cee634") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1024 } Some("core::ptr::drop_in_place>::hf7af0250aa06647f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2013 } Some(" as serde_core::de::DeserializeSeed>::deserialize::h8f38ce864875760e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4945 } Some("core::ptr::drop_in_place::h9709aa7397e1afc2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4947 } Some("core::ptr::drop_in_place::h31679f47a37f395b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2014 } Some(" as serde_core::de::DeserializeSeed>::deserialize::h9bb3d6d2f14bcc9d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2267 } Some("core::ptr::drop_in_place::h4a4ef6adeb0ef66e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4525 } Some("wasm_bindgen::JsValue::as_string::hc11f2c376aacb1ff") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1913 } Some("core::option::Option::is_some::h5fbac1ab2f57dc00") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2015 } Some(" as serde_core::de::DeserializeSeed>::deserialize::ha527355ca9832689") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2016 } Some(" as serde_core::de::DeserializeSeed>::deserialize::hb5e7dd042260324f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4948 } Some("core::ptr::drop_in_place::h0f1bac357c25390b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2017 } Some(" as serde_core::de::DeserializeSeed>::deserialize::hc5844247136e6284") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4952 } Some("core::ptr::drop_in_place>::he45881792e98bda9") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2268 } Some("core::ptr::drop_in_place::he9a5967f2edefcd4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1032 } Some("core::ptr::drop_in_place>>::hf2da8a0a67c9dabb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4629 } Some("core::fmt::Arguments::new::hb81a5c6fa65a3011") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4955 } Some("core::ptr::drop_in_place>::h01897617a617d47a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1914 } Some("core::option::Option::is_some::h677f0152067aad49") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2018 } Some(" as serde_core::de::DeserializeSeed>::deserialize::hd157a18b919de2f1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1919 } Some("core::option::Option::is_some::hdf63d9fcdc117da8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2020 } Some(" as serde_core::de::DeserializeSeed>::deserialize::hdb4502fd22868328") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4969 } Some("alloc::rc::RcInnerPtr::strong::h9f3c2e1ee3ba30ff") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2269 } Some("core::ptr::drop_in_place::h257f61ec45dd9be8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1033 } Some("core::ptr::drop_in_place>::hcb9108fc9e3107b6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2021 } Some(" as serde_core::de::DeserializeSeed>::deserialize::hdc51a2ea8f65767e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1922 } Some("core::option::Option::Some::h66ae29c75cc61e68") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4971 } Some("alloc::rc::RcInnerPtr::strong::h608567db1690b67d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4685 } Some("js_sys::futures::task::singlethread::Task::into_raw_waker::raw_drop::ha4d5a8cd3c8ed0e0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2022 } Some(" as serde_core::de::DeserializeSeed>::deserialize::hdf2423020562b597") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2270 } Some("core::ptr::drop_in_place::h80e41feec14e47e5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5193 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h56578bc225012a99") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2034 } Some("wasm_bindgen::JsValue::as_string::he5df3c8b68899747") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4906 } Some("core::ops::function::FnOnce::call_once::ha55f8416424733a8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2162 } Some("::into_iter::h778c4ba13b598e9d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2048 } Some("core::fmt::Arguments::new::h20ca44c6cdbaf36f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1034 } Some("core::ptr::drop_in_place>::hc07f74674ab4066d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2049 } Some("core::fmt::Arguments::new::h21f6e0961465412d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5434 } Some("core::ptr::drop_in_place::h08d4b181ad40b7c8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2507 } Some("::into_future::h9e0e7bd8a246a345") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2050 } Some("core::fmt::Arguments::new::h3273c1c4e71fdfcf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2637 } Some(" as core::ops::try_trait::FromResidual>>::from_residual::h0bfd07f82ac653d0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5462 } Some("core::ptr::drop_in_place>::hdd8cd5824a2a2d82") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2271 } Some("core::ptr::drop_in_place::hbbdcd737b3075a74") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1035 } Some("core::ptr::drop_in_place>::hfa562bff0e48cb37") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2051 } Some("core::fmt::Arguments::new::h336293031d5063fb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5481 } Some("wasm_bindgen::externref::internal_error::h4007dc2f4ff257af") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1036 } Some("core::ptr::drop_in_place>::h1d3fcc6647d8bbf3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2272 } Some("core::ptr::drop_in_place::h29c0d58ec50aa520") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2052 } Some("core::fmt::Arguments::new::h59f241d9bf342636") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5499 } Some("core::ptr::drop_in_place< as core::ops::drop::Drop>::drop::DropGuard>::h13ee4f93f198fdff") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5204 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h8bcb7afa2ad8ef88") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2273 } Some("core::ptr::drop_in_place::he396d0ca95b75755") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2806 } Some("::drop::h2ffdbbb88bcfbbd2") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5207 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h99233534f25e76c6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2053 } Some("core::fmt::Arguments::new::h7efa46b0198b6201") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5502 } Some("core::ptr::drop_in_place::h9875d2bf8685bece") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2274 } Some("core::ptr::drop_in_place::h9474a7757ccfe76e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5208 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h9f2476834c284498") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2054 } Some("core::fmt::Arguments::new::h96fcbae5ed37a85c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5504 } Some("core::ptr::drop_in_place>::hfc1fef19e842a239") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2276 } Some("core::ptr::drop_in_place::h4edd26b14b930344") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 106 } Some("core::option::Option::is_some::h75e39780111eb2b6") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2055 } Some("core::fmt::Arguments::new::h9cdd51d965918c54") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5585 } Some("core::cell::Cell::set::hf6f24cd059201b32") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 3021 } Some("::into_iter::h8f2479d6ba291103") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 408 } Some(">::into::he08ad181f67ea327") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5711 } Some("core::ptr::drop_in_place::haacd87ca6e01e33a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2056 } Some("core::fmt::Arguments::new::hb5ad3f5a2dc1df56") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 475 } Some("wasm_bindgen::__rt::WasmWord::is_zero::h6ee2c54d1f778e0e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5713 } Some("core::ptr::drop_in_place>::h476cd3251cae528a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5179 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::h025cb0a749c68f39") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5216 } Some("wasm_bindgen::convert::closures::_::invoke::{{closure}}::hcee3444f6a0a192c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2057 } Some("core::fmt::Arguments::new::hd2f4db08ab89d2c5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5748 } Some("std::alloc::rust_oom::hbbbc0258d349aa94") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2058 } Some("core::fmt::Arguments::new::he0ee303c6cb74d13") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 841 } Some("core::convert::num::ptr_try_from_impls:: for u32>::try_from::hf3f7279d2e651c1c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5475 } Some("alloc::string::String::from_utf8_unchecked::hc95ecf3a498e75b5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2277 } Some("core::ptr::drop_in_place>::h6997f7806f585044") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 972 } Some("beef::wide::::empty::hfed30e6d8448b530") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6097 } Some("__wbgtest_cov_dump multivalue shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2282 } Some("core::ptr::drop_in_place>::h1ccc04fcc4efb1bb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5229 } Some("core::task::wake::RawWaker::new::h114894a739a076fe") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1208 } Some("core::array::::as_slice::h0683721597138dba") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2285 } Some("core::ptr::drop_in_place>::hef17732d5d1dfb7e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 91 } Some("core::ptr::drop_in_place::{{closure}}>::hb05840a57872c976") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5292 } Some("core::mem::transmute_copy::h24aae9c376a1223c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2059 } Some("core::fmt::Arguments::new::he92c8133edc74677") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1209 } Some("core::array::::as_slice::ha2710e6fa037c75c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 105 } Some("core::option::Option::take::h2f217551e2d9a201") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2060 } Some("core::fmt::Arguments::new::hf0c8de0bec6fe30a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5293 } Some("core::mem::transmute_copy::h3b8f24ae4a100fff") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1210 } Some("core::array::::as_slice::hb087ce6afee690eb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2286 } Some("core::ptr::drop_in_place::hadc925999023ae14") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6098 } Some("__wbgtest_module_signature multivalue shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2287 } Some("core::ptr::drop_in_place>::h78f2cb98a325810c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2126 } Some("::into_iter::he61140f1bdee2db7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1247 } Some("wasm_bindgen::convert::slices::unsafe_get_cached_str::h0f5b5f7d0c27dcb8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2132 } Some("core::f64::::is_infinite::h7f8f1e8ddc4c5369") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 851 } Some(" as doublets::data::traits::Links>::count_links::{{closure}}::h50246e498d63f312") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 6100 } Some("__wbgbench_dump multivalue shim") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1322 } Some("platform_data::flow::Flow::is_continue::h9846e09b54f89645") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2139 } Some("core::iter::traits::iterator::Iterator::for_each::h3b0d0683f22d5606") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2288 } Some("core::ptr::drop_in_place>::hd1f877e03310d45a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1323 } Some("platform_data::flow::Flow::is_break::h7ede27d97bdfc872") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5294 } Some("core::mem::transmute_copy::h6d1d5f4364a0a3d0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2140 } Some("core::task::wake::Waker::from_raw::hc63bd8f85671792a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2289 } Some("core::ptr::drop_in_place::h12f5fa12b4e6b844") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1385 } Some("serde_json::de::MapAccess::new::h866d7f44b5ac9c41") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1386 } Some("serde_json::de::SeqAccess::new::h7ad27685bdb166fb") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 893 } Some("core::cell::RefCell::into_inner::hb191ecb7aac45410") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2202 } Some("core::ops::function::FnOnce::call_once::hd3fb73ddb64fa081") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1256 } Some("alloc::string::String::into_bytes::h3802607a41e33e58") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5295 } Some("core::mem::transmute_copy::h6e76e8d1d9ff3e24") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1594 } Some("alloc::string::String::from_utf8_unchecked::h57e6ba85b6038528") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2394 } Some("::deserialize::__Field as serde_core::de::Deserialize>::deserialize::h38f7acdfc0ef2e5a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1471 } Some("alloc::vec::Vec::is_empty::h04dabf3899057503") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1129 } Some("doublets_web::UnitedLinks::each::{{closure}}::{{closure}}::h24af1ccece9be352") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2395 } Some("::to_string::h8a7f0a4952cac8ab") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2292 } Some("core::ptr::drop_in_place>::h1ecb24000b80a5be") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1625 } Some("alloc::string::String::into_bytes::h2c3515deee628694") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5296 } Some("core::mem::transmute_copy::h76bab5a35157f84d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2505 } Some("core::str::converts::from_utf8_unchecked::h4ea7e5610b8fa9ea") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2439 } Some("wasm_bindgen_test::__rt::__wbgtest_console_log::h6e38252dcb9f7095") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1681 } Some("::deserialize::PrimitiveVisitor as serde_core::de::Visitor>::visit_i64::hf27d71a95a4fee77") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1472 } Some("alloc::vec::Vec::is_empty::h88080ea0f7270f57") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2443 } Some("wasm_bindgen_test::__rt::__wbgtest_console_warn::h408e818cae768187") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2441 } Some("wasm_bindgen_test::__rt::__wbgtest_console_info::h1e65f758b72519a4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5298 } Some("core::mem::transmute_copy::h7f909f042bc5a65f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 93 } Some("core::ptr::drop_in_place::set::Reset>::h94d6aaeb3708bb20") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1013 } Some("core::ptr::drop_in_place,allocator_api2::alloc::global::Global>>::h520056e5916d6982") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2445 } Some("wasm_bindgen_test::__rt::__wbgtest_console_debug::h9c27e0428e3b2c7c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1612 } Some("core::result::Result::is_ok::h6e8f26917b31dfaa") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5299 } Some("core::mem::transmute_copy::hbf43088db6744908") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 114 } Some("std::sys::backtrace::__rust_begin_short_backtrace::h52be7035936806c5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2447 } Some("wasm_bindgen_test::__rt::__wbgtest_console_error::h84f0ce47b6381aa0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1016 } Some("core::ptr::drop_in_place>>::h26b4891721b96d38") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 127 } Some("alloc::rc::RcInnerPtr::strong::hf46c53083c1a30b4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5300 } Some("core::mem::transmute_copy::hc104b63f3a0028a1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2495 } Some("wasm_bindgen_test::__rt::Context::new::{{closure}}::hcf9dd1e774f86d70") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4903 } Some("core::ptr::drop_in_place::h6cabbcc347365a8a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 373 } Some(" as core::iter::traits::iterator::Iterator>::size_hint::hffced0322a5431e5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2557 } Some("core::ptr::drop_in_place::h3bea8fbe7c38e4ad") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4910 } Some("core::ptr::drop_in_place>::h234175dbb590a4f5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1018 } Some("core::ptr::drop_in_place>>::h788c777f16bb2532") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1251 } Some("alloc::string::String::from_utf8_unchecked::h599e1bbeeea4b4ce") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5301 } Some("core::mem::transmute_copy::hde69f07c5e2c5bde") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1021 } Some("core::ptr::drop_in_place>::he9563d50387170ef") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5494 } Some("core::fmt::Arguments::new::h18979dd8bc7c695e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2579 } Some("core::ptr::drop_in_place>::h07d1f3dee3e90c0c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1023 } Some("core::ptr::drop_in_place::h66103ae297e3d4d3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1026 } Some("core::ptr::drop_in_place>::hd2771944a0840e3c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2811 } Some("core::ptr::drop_in_place::hb7c6ed49e75dceb3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2817 } Some("core::ptr::drop_in_place::ha0aaf23e765b505a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1262 } Some("console_error_panic_hook::hook::h5454424519ccf3d7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5495 } Some("core::fmt::Arguments::new::h6831f402c89936ca") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2819 } Some("core::ptr::drop_in_place::hc5d895ee2612258b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 744 } Some("console_error_panic_hook::set_once::{{closure}}::hec2aec69057d8985") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4913 } Some("core::ptr::drop_in_place>::h68621d8d9f536289") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1029 } Some("core::ptr::drop_in_place>::h8816fafd01c43018") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 991 } Some("core::ptr::drop_in_place>>::h1726915a6d61fcee") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1270 } Some("core::ptr::drop_in_place::hc8281f45a1dab16e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5496 } Some("core::fmt::Arguments::new::hb5bb5be3d7c8d49b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4915 } Some("core::ptr::drop_in_place>>::h9da2a282259ae06a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2823 } Some("core::ptr::drop_in_place>::h9a2090f37473169a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1030 } Some("core::ptr::drop_in_place>::h32ac150616496084") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1276 } Some("core::ptr::drop_in_place::into_abi::{{closure}}>::h432e8c27e01debba") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5565 } Some("wasm_bindgen::JsValue::as_debug_string::hfa4dc4348174ffea") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1038 } Some("core::ptr::drop_in_place::h3bf9ef8c197f0949") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 993 } Some("core::ptr::drop_in_place>>::hb61405961fbfee4e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1303 } Some("core::ptr::drop_in_place::h3533608b26b6d2fa") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 995 } Some("core::ptr::drop_in_place>>::h9205b373a8e36ad5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4919 } Some("core::ptr::drop_in_place>>::hd538cff6e108af44") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1040 } Some("core::ptr::drop_in_place>::hb03aa5c39cfe8746") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2825 } Some("core::ptr::drop_in_place::h935bb1ca6cbc4863") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1307 } Some("core::ptr::drop_in_place::h878a4883b8712ed3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4923 } Some("core::ptr::drop_in_place::hddc65d8fcf2258df") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2989 } Some("core::ptr::drop_in_place>::h71ab6778e7f6973d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1308 } Some("core::ptr::drop_in_place::h483159b2a7bd560f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1044 } Some("core::ptr::drop_in_place>::he23dcedd8a8c3cc4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 5844 } Some("::flush::hb35626ad083d119e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1045 } Some("core::ptr::drop_in_place>::haec8d9149e889232") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 83 } Some("core::ops::function::FnOnce::call_once{{vtable.shim}}::h7e60bdd92407d20f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1798 } Some("alloc::collections::btree::map::BTreeMap::new::h68a106bbacd5e82b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 997 } Some("core::ptr::drop_in_place>>::h041f4634b28a6a78") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1047 } Some("core::ptr::drop_in_place>::h5463249065cbf082") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 85 } Some("core::ops::function::FnOnce::call_once::h6b1b40f1cc8ef9c5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 999 } Some("core::ptr::drop_in_place>>::ha8798497661d3134") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2138 } Some("core::str::::is_empty::had4838f0e051d911") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4924 } Some("core::ptr::drop_in_place>>::h2cd033bbcd22bdb1") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1001 } Some("core::ptr::drop_in_place>>::h08cbc45aa62f7d0a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1048 } Some("core::ptr::drop_in_place>::h67b36446e46cac5a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4644 } Some("core::task::poll::Poll::is_ready::h46fe59fa71efb044") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4925 } Some("core::ptr::drop_in_place>::h02babd6ee125b56f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1049 } Some("core::ptr::drop_in_place>::h165ab2582bb1fa95") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2141 } Some("core::slice::::is_empty::h24374cac17ce200c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4680 } Some("js_sys::futures::task::singlethread::Task::force_wake::hfe6fc74c68e07654") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4927 } Some("core::ptr::drop_in_place js_sys::futures::task::singlethread::ConsoleTask>>::h56045131eaca1a6f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2145 } Some("alloc::rc::RcInnerPtr::strong::h419cca1a1d227e8f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1003 } Some("core::ptr::drop_in_place>>::h35490568aeb868b7") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4934 } Some("core::ptr::drop_in_place>>>::h087456f0cf872ebf") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1051 } Some("core::ptr::drop_in_place>::h7b3094ac6873896e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1005 } Some("core::ptr::drop_in_place,&alloc::alloc::Global>>::hd1f69749fe300ccd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2147 } Some("alloc::rc::RcInnerPtr::strong::haf1dd56ba89c19d0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4937 } Some("core::ptr::drop_in_place< as core::ops::drop::Drop>::drop::Dropper>>::h717ec2adf527c89e") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1052 } Some("core::ptr::drop_in_place>::h5591a36291662aab") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1007 } Some("core::ptr::drop_in_place,&alloc::alloc::Global>>::hba8a7c3b132e476b") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4746 } Some(" as core::ops::drop::Drop>::drop::hb38d22b353bd46da") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4940 } Some("core::ptr::drop_in_place::h81dd7cdfb2b43fe5") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2148 } Some("alloc::rc::Rc::increment_strong_count::h0089a74dd8608327") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4928 } Some("core::ptr::drop_in_place::hc58bb2f831038371") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1054 } Some("core::ptr::drop_in_place>>::h51e92867dcd659fd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4929 } Some("core::ptr::drop_in_place>>::h67937e4f1af20519") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2198 } Some("core::ptr::drop_in_place::{{closure}}>::hb0c3cc4b6dabd8fd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1009 } Some("core::ptr::drop_in_place,&alloc::alloc::Global>>::hfec09e31af14b288") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1057 } Some("core::ptr::drop_in_place>::hdf85ea53bdfe23da") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2201 } Some("core::ops::function::FnOnce::call_once::h862d01e44fbdfc53") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2208 } Some("core::ptr::drop_in_place>::hf422e1d629e36087") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4941 } Some("core::ptr::drop_in_place::h3b45c99ab9032038") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2205 } Some("core::ptr::drop_in_place>>::ha066ad35cb2ea3cc") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1079 } Some("core::slice::::is_empty::h9cdb14abc9fa2c40") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1011 } Some("core::ptr::drop_in_place,&alloc::alloc::Global>>::ha9d0a156c74d64f8") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1081 } Some("alloc::rc::RcInnerPtr::strong::h2d47d98d3bd1a9f3") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2207 } Some("core::ptr::drop_in_place>>::h2c6c81475b0a8739") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1086 } Some("alloc::rc::Rc::increment_strong_count::h9419afee64d91196") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1083 } Some("alloc::rc::RcInnerPtr::strong::h9f26e1c26ada2c24") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2226 } Some("core::ptr::drop_in_place,&alloc::alloc::Global>>::h8ab5e50665869b38") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 4931 } Some("core::ptr::drop_in_place::hcdd772b290cb406f") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2212 } Some("core::ptr::drop_in_place::h2b672790e4d67ef4") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1084 } Some("alloc::rc::Rc::increment_strong_count::h339ca05c54963979") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1126 } Some("doublets_web::UnitedLinks::new::{{closure}}::hae74437058a01172") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2221 } Some("core::ptr::drop_in_place>::h162d7e92e886ba67") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2227 } Some("core::ptr::drop_in_place::extend_trusted>::{{closure}}>::ha50a97088147eb77") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2216 } Some("core::ptr::drop_in_place>>::hbb5266c312cb71bd") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2233 } Some("core::ptr::drop_in_place>::hce0357b62379e44a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2222 } Some("core::ptr::drop_in_place wasm_bindgen::sys::Undefined>>::h799e07b97a742e54") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2217 } Some("core::ptr::drop_in_place>>::h489129c1f475461c") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2234 } Some("core::ptr::drop_in_place>::h6452ba9e7ec31d46") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2223 } Some("core::ptr::drop_in_place>>::h29d32d2a3ee48a0a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2240 } Some("core::ptr::drop_in_place>>::hb897898a2191e230") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2229 } Some("core::ptr::drop_in_place,&alloc::alloc::Global>>::h8050bc879e753b9a") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2241 } Some("core::ptr::drop_in_place::into_abi::{{closure}}>::hafb5787039c4cbd0") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2224 } Some("core::ptr::drop_in_place>::h958e07c7aa8c4d61") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 2232 } Some("core::ptr::drop_in_place>>::ha6523ef5d6ffd724") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1231 } Some("doublets::data::traits::Doublets::delete_by::{{closure}}::h50fbe5defa17ba17") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1233 } Some("doublets::data::traits::Doublets::update_by::{{closure}}::ha8bd206dbac3222d") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1134 } Some("doublets_web::UnitedLinks::delete::{{closure}}::hdff2c20b5a850a88") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1132 } Some("doublets_web::UnitedLinks::create::{{closure}}::hb1587b4e0271d581") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1136 } Some("doublets_web::UnitedLinks::update::{{closure}}::h412e7a47df97eeda") +[2026-05-01T09:08:43Z DEBUG walrus::module::functions] emit function Id { idx: 1230 } Some("doublets::data::traits::Doublets::create_by::{{closure}}::hdecb6ccec8806d3c") +[2026-05-01T09:08:43Z DEBUG walrus::module::data] emit data section +[2026-05-01T09:08:43Z DEBUG walrus::module] emit name section +[2026-05-01T09:08:43Z DEBUG walrus::module::producers] emit producers section +[2026-05-01T09:08:44Z DEBUG walrus::module] emitting custom section target_features +[2026-05-01T09:08:44Z DEBUG walrus::module] emission finished +running 1 test +test united_links_crud_round_trip ... ok + +test result: ok. 1 passed; 0 failed; 0 ignored; 0 filtered out; finished in 0.06s + + Doc-tests doublets_web + +running 0 tests + +test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s + +[INFO wasm_pack::command::test] Finished running tests in node. +[INFO wasm_pack::command::test] Done in 13.22s. diff --git a/testapp/LICENSE b/testapp/LICENSE new file mode 100644 index 0000000..efb9808 --- /dev/null +++ b/testapp/LICENSE @@ -0,0 +1,24 @@ +This is free and unencumbered software released into the public domain. + +Anyone is free to copy, modify, publish, use, compile, sell, or +distribute this software, either in source code form or as a compiled +binary, for any purpose, commercial or non-commercial, and by any +means. + +In jurisdictions that recognize copyright laws, the author or authors +of this software dedicate any and all copyright interest in the +software to the public domain. We make this dedication for the benefit +of the public at large and to the detriment of our heirs and +successors. We intend this dedication to be an overt act of +relinquishment in perpetuity of all present and future rights to this +software under copyright law. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR +OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + +For more information, please refer to diff --git a/testapp/LICENSE-APACHE b/testapp/LICENSE-APACHE deleted file mode 100644 index 11069ed..0000000 --- a/testapp/LICENSE-APACHE +++ /dev/null @@ -1,201 +0,0 @@ - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS - -APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - -Copyright [yyyy] [name of copyright owner] - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. diff --git a/testapp/LICENSE-MIT b/testapp/LICENSE-MIT deleted file mode 100644 index 7079dae..0000000 --- a/testapp/LICENSE-MIT +++ /dev/null @@ -1,25 +0,0 @@ -Copyright (c) [year] [name] - -Permission is hereby granted, free of charge, to any -person obtaining a copy of this software and associated -documentation files (the "Software"), to deal in the -Software without restriction, including without -limitation the rights to use, copy, modify, merge, -publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software -is furnished to do so, subject to the following -conditions: - -The above copyright notice and this permission notice -shall be included in all copies or substantial portions -of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED -TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A -PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT -SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY -CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR -IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. diff --git a/testapp/package-lock.json b/testapp/package-lock.json index a464ab2..cda41e8 100644 --- a/testapp/package-lock.json +++ b/testapp/package-lock.json @@ -7,7 +7,7 @@ "": { "name": "create-wasm-app", "version": "0.1.0", - "license": "(MIT OR Apache-2.0)", + "license": "Unlicense", "dependencies": { "doublets-web": "^0.1.0-beta.3" }, diff --git a/testapp/package.json b/testapp/package.json index ecee1e3..53740ef 100644 --- a/testapp/package.json +++ b/testapp/package.json @@ -21,7 +21,7 @@ "webpack" ], "author": "Ashley Williams ", - "license": "(MIT OR Apache-2.0)", + "license": "Unlicense", "bugs": { "url": "https://github.com/rustwasm/create-wasm-app/issues" }, diff --git a/tests/license_metadata.rs b/tests/license_metadata.rs new file mode 100644 index 0000000..f96de42 --- /dev/null +++ b/tests/license_metadata.rs @@ -0,0 +1,60 @@ +use std::{fs, path::Path}; + +const OLD_LICENSE_MARKERS: &[&str] = &[ + "MIT OR Apache-2.0", + "LICENSE_MIT", + "LICENSE_APACHE", + "License, Version 2.0", +]; + +#[test] +fn public_license_metadata_uses_unlicense() { + let root = Path::new(env!("CARGO_MANIFEST_DIR")); + + let cargo_toml = read(root.join("Cargo.toml")); + assert!(cargo_toml.contains("license = \"Unlicense\"")); + + let readme = read(root.join("README.md")); + assert!(readme.contains("license-Unlicense")); + assert!(readme.contains("[The Unlicense](LICENSE)")); + + let testapp_package_json = read(root.join("testapp/package.json")); + assert!(testapp_package_json.contains("\"license\": \"Unlicense\"")); + + let testapp_package_lock = read(root.join("testapp/package-lock.json")); + assert!(testapp_package_lock.contains("\"license\": \"Unlicense\"")); + + assert_unlicense_text(root.join("LICENSE")); + assert_unlicense_text(root.join("testapp/LICENSE")); + + for (name, contents) in [ + ("Cargo.toml", cargo_toml), + ("README.md", readme), + ("testapp/package.json", testapp_package_json), + ("testapp/package-lock.json", testapp_package_lock), + ] { + for marker in OLD_LICENSE_MARKERS { + assert!( + !contents.contains(marker), + "{name} still contains old license marker {marker:?}" + ); + } + } + + assert!(!root.join("LICENSE_MIT").exists()); + assert!(!root.join("LICENSE_APACHE").exists()); + assert!(!root.join("testapp/LICENSE-MIT").exists()); + assert!(!root.join("testapp/LICENSE-APACHE").exists()); +} + +fn assert_unlicense_text(path: impl AsRef) { + let contents = read(path); + assert!(contents.contains("released into the public domain")); + assert!(contents.contains("https://unlicense.org/")); +} + +fn read(path: impl AsRef) -> String { + let path = path.as_ref(); + fs::read_to_string(path) + .unwrap_or_else(|err| panic!("failed to read {}: {err}", path.display())) +}